mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
20 lines
382 B
JavaScript
20 lines
382 B
JavaScript
|
import React from 'react'
|
||
|
import { addDecorator } from '@storybook/react'
|
||
|
import { withKnobs } from '@storybook/addon-knobs/react'
|
||
|
|
||
|
const styles = {
|
||
|
height: '100vh',
|
||
|
display: 'flex',
|
||
|
justifyContent: 'center',
|
||
|
alignItems: 'center',
|
||
|
}
|
||
|
|
||
|
const CenterDecorator = story => (
|
||
|
<div style={styles}>
|
||
|
{ story() }
|
||
|
</div>
|
||
|
)
|
||
|
|
||
|
addDecorator(withKnobs)
|
||
|
addDecorator(CenterDecorator)
|