1
1
mirror of https://github.com/primer/css.git synced 2024-11-10 07:58:36 +03:00

move button story to base

This commit is contained in:
Diana Mounter 2017-11-07 20:31:09 -05:00
parent 65a1be7de1
commit 24763f4a2f
2 changed files with 7 additions and 3 deletions

View File

@ -0,0 +1,7 @@
import React from 'react'
import { storiesOf } from '@storybook/react'
storiesOf('Base', module)
.add('button', () => (
<button>Button</button>
))

View File

@ -2,9 +2,6 @@ import React from 'react'
import { storiesOf } from '@storybook/react'
storiesOf('Button', module)
.add('button', () => (
<button>Button</button>
))
.add('btn', () => (
<button className='btn'>Button</button>
))