mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
25 lines
568 B
JavaScript
25 lines
568 B
JavaScript
/** @jsx createElement */
|
|
/* eslint-disable import/no-extraneous-dependencies */
|
|
import { createElement } from 'rax';
|
|
import View from 'rax-view';
|
|
import { makeDecorator } from '@storybook/addons';
|
|
import parameters from './parameters';
|
|
import styles from './styles';
|
|
|
|
function centered(storyFn) {
|
|
return (
|
|
<View style={styles.style}>
|
|
<View style={styles.innerStyle}>{storyFn()}</View>
|
|
</View>
|
|
);
|
|
}
|
|
|
|
export default makeDecorator({
|
|
...parameters,
|
|
wrapper: centered,
|
|
});
|
|
|
|
if (module && module.hot && module.hot.decline) {
|
|
module.hot.decline();
|
|
}
|