diff --git a/README.md b/README.md index ea2fbd9..e64ec14 100644 --- a/README.md +++ b/README.md @@ -399,7 +399,7 @@ If you would like to help develop a suggested feature follow these steps: If you would like to preview your changes as you develop, you can link and utilize our React Storybook like so: - `npm install` -- `npm run watch && run storybook` (or run them in separate tabs) +- `run storybook` (or run them in separate tabs) - Make changes to stories in `/stories`, or create a new one if needed - View changes at `localhost:8000` diff --git a/stories/OneHundredKRows.js b/stories/OneHundredKRows.js index b238c53..efb2f78 100644 --- a/stories/OneHundredKRows.js +++ b/stories/OneHundredKRows.js @@ -3,7 +3,7 @@ import _ from 'lodash' import namor from 'namor' import CodeHighlight from './components/codeHighlight' -import ReactTable from '../lib/index' +import ReactTable from '../src/index' export default () => { const data = _.map(_.range(100000), d => { diff --git a/stories/Pivoting.js b/stories/Pivoting.js index 2045ea7..355c70d 100644 --- a/stories/Pivoting.js +++ b/stories/Pivoting.js @@ -3,7 +3,7 @@ import _ from 'lodash' import namor from 'namor' import CodeHighlight from './components/codeHighlight' -import ReactTable from '../lib/index' +import ReactTable from '../src/index' export default () => { const data = _.map(_.range(10000), d => { diff --git a/stories/PivotingSubComponents.js b/stories/PivotingSubComponents.js index e96ac7d..74e758a 100644 --- a/stories/PivotingSubComponents.js +++ b/stories/PivotingSubComponents.js @@ -3,7 +3,7 @@ import _ from 'lodash' import namor from 'namor' import CodeHighlight from './components/codeHighlight' -import ReactTable from '../lib/index' +import ReactTable from '../src/index' export default () => { const data = _.map(_.range(1000), d => { diff --git a/stories/ServerSide.js b/stories/ServerSide.js index 4699d63..7546c15 100644 --- a/stories/ServerSide.js +++ b/stories/ServerSide.js @@ -3,7 +3,7 @@ import _ from 'lodash' import namor from 'namor' import CodeHighlight from './components/codeHighlight' -import ReactTable from '../lib/index' +import ReactTable from '../src/index' const rawData = _.map(_.range(3424), d => { return { diff --git a/stories/Simple.js b/stories/Simple.js index 9f45cee..4510474 100644 --- a/stories/Simple.js +++ b/stories/Simple.js @@ -3,7 +3,7 @@ import _ from 'lodash' import namor from 'namor' import CodeHighlight from './components/codeHighlight' -import ReactTable from '../lib/index' +import ReactTable from '../src/index' export default () => { const data = _.map(_.range(5553), d => { diff --git a/stories/SubComponents.js b/stories/SubComponents.js index f562e74..de95077 100644 --- a/stories/SubComponents.js +++ b/stories/SubComponents.js @@ -3,7 +3,7 @@ import _ from 'lodash' import namor from 'namor' import CodeHighlight from './components/codeHighlight' -import ReactTable from '../lib/index' +import ReactTable from '../src/index' export default () => { const data = _.map(_.range(5553), d => { diff --git a/stories/components/Logo.js b/stories/components/Logo.js deleted file mode 100644 index d367800..0000000 --- a/stories/components/Logo.js +++ /dev/null @@ -1,14 +0,0 @@ -import React from 'react' -import banner from '../../media/Banner.png' - -export default () => ( -
-
- - - -
-
-
-
-)