Better storybook

This commit is contained in:
Tanner Linsley
2017-01-17 11:36:30 -07:00
parent 9bbdd762e6
commit 8a74b2b795
8 changed files with 7 additions and 21 deletions

View File

@@ -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 <a href="https://github.com/storybooks/react-storybook" target="\_parent">React Storybook</a> 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`

View File

@@ -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 => {

View File

@@ -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 => {

View File

@@ -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 => {

View File

@@ -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 {

View File

@@ -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 => {

View File

@@ -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 => {

View File

@@ -1,14 +0,0 @@
import React from 'react'
import banner from '../../media/Banner.png'
export default () => (
<div>
<div style={{textAlign: 'center'}}>
<a href='https://github.com/tannerlinsley/react-table' target='_blank'>
<img src={banner} className='logo' />
</a>
<br />
<br />
</div>
</div>
)