Repository URL to install this package:
|
Version:
0.9.5 ▾
|
import React from 'react'
import { storiesOf } from '@storybook/react'
import Figure from 'molecules/Figure'
import { styled } from 'view-container'
storiesOf('molecules/Figure', module)
.add('Default', () => <Figure caption="banner" />)
.add('Auto Align', () => (
<Figure width="400px" height="300px" doAutoAlign caption="Banner with Auto Align" />
))