Skip to content

Commit

Permalink
Updated for @kadira/storybook
Browse files Browse the repository at this point in the history
  • Loading branch information
arunoda committed Mar 29, 2016
1 parent 2e4328a commit 8f2a6d8
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .storybook/config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { configure } from 'react-storybook';
import { configure } from '@kadira/storybook';
import 'todomvc-app-css/index.css'

function loadStories() {
Expand Down
2 changes: 1 addition & 1 deletion components/stories/MainSection.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react';
import MainSection from '../MainSection';
import { storiesOf, action } from 'react-storybook';
import { storiesOf, action } from '@kadira/storybook';

storiesOf('MainSection', module)
.add('all active', () => {
Expand Down
2 changes: 1 addition & 1 deletion components/stories/TodoItem.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react';
import TodoItem from '../TodoItem';
import { storiesOf, action } from 'react-storybook';
import { storiesOf, action } from '@kadira/storybook';

storiesOf('TodoItem', module)
.add('not completed', () => {
Expand Down
2 changes: 1 addition & 1 deletion components/stories/footer.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react';
import Footer from '../Footer';
import { storiesOf, action } from 'react-storybook';
import { storiesOf, action } from '@kadira/storybook';
import {
SHOW_ALL, SHOW_COMPLETED, SHOW_ACTIVE
} from '../../constants/TodoFilters'
Expand Down
2 changes: 1 addition & 1 deletion components/stories/header.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react';
import Header from '../Header';
import { storiesOf, action } from 'react-storybook';
import { storiesOf, action } from '@kadira/storybook';

storiesOf('Header', module)
.add('default view', () => {
Expand Down

0 comments on commit 8f2a6d8

Please sign in to comment.