0
0
Fork 0
This repository has been archived on 2024-05-09. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
bus-routes/stories/index.js
2017-09-17 14:17:28 -05:00

19 lines
696 B
JavaScript

import React from 'react'
import FourOhFour from '../src/components/404/404'
import Bus from '../src/components/Bus/Bus'
import Home from '../src/components/Home/Home'
import { storiesOf } from '@storybook/react'
import { action } from '@storybook/addon-actions'
storiesOf('Components/404', module)
.add('with default props', () => <FourOhFour />)
storiesOf('Components/Bus', module)
.add('with default props', () => <Bus />)
.add('with location', () => <Bus location="44.97167,-93.24725" />)
.add('with long description', () => <Bus description="Here we go, somewhere into the wild blue yonder!" />)
storiesOf('Components/Home', module)
.add('with default props', () => <Home />)