Whiting Story
import React from 'react'
import './Center.sass'
const Center = ({ children, ...restProps }) => {
return <div className="center">{children}</div>
}
export default Center
.center
display: flex
justify-content: centerexport const RedButton = () => (
<Center>
<Button2 red>Red</Button2>
</Center>
)import React from 'react'
import Button2 from './Button2'
import Center from '../Center/Center'
export default {
title: 'Form/Button2',
component: Button2,
decorators: [(story) => <Center>{story()}</Center>],
}
export const Primary = () => <Button2 primary>Primary</Button2>
Args

스토리 묶기

Last updated