1
1
mirror of https://github.com/primer/css.git synced 2024-11-28 13:12:16 +03:00

move utilities stories into stories folder

This commit is contained in:
Diana Mounter 2017-11-10 13:32:25 -05:00
parent 96389ed27d
commit 4c9bdf1081
3 changed files with 11 additions and 7 deletions

View File

@ -0,0 +1,9 @@
import React from 'react'
import { storiesOf } from '@storybook/react'
storiesOf('Animation utilities', module)
.add('hover-grow', () => (
<div className='Box hover-grow p-4'>
.hover-grow
</div>
))

View File

@ -1,12 +1,7 @@
import React from 'react'
import { storiesOf } from '@storybook/react'
storiesOf('Utilities', module)
.add('hover-grow', () => (
<div className='Box hover-grow p-4'>
.hover-grow
</div>
))
storiesOf('Border utilities', module)
.add('circle', () => (
<div className='border circle p-3' style={{width: '100px', height: '100px'}}>
.circle

View File

@ -1,7 +1,7 @@
import React from 'react'
import { storiesOf } from '@storybook/react'
storiesOf('Typography', module)
storiesOf('Typography utilities', module)
.add('h1-h6', () => (
<div>
<h1 className='h1'>h1</h1>