mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
2be8bf0b0b
The names for Storybook modules have changed in v5.3.0. `config.js` was renamed to `preview.js`, and addon registration has been moved to `main.js`. See here for details: https://github.com/storybookjs/storybook/blob/next/MIGRATION.md#from-version-52x-to-53x
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)
|