mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
add rax support for centered
This commit is contained in:
parent
e4cd0c5554
commit
182e74b4b3
1
addons/centered/rax.js
Normal file
1
addons/centered/rax.js
Normal file
@ -0,0 +1 @@
|
||||
module.exports = require('./dist/rax');
|
18
addons/centered/src/rax.js
Normal file
18
addons/centered/src/rax.js
Normal file
@ -0,0 +1,18 @@
|
||||
/** @jsx createElement */
|
||||
// eslint-disable-next-line import/no-extraneous-dependencies
|
||||
import { createElement } from 'rax';
|
||||
// eslint-disable-next-line import/no-extraneous-dependencies
|
||||
import View from 'rax-view';
|
||||
import styles from './styles';
|
||||
|
||||
export default function(storyFn) {
|
||||
return (
|
||||
<View style={styles.style}>
|
||||
<View style={styles.innerStyle}>{storyFn()}</View>
|
||||
</View>
|
||||
);
|
||||
}
|
||||
|
||||
if (module && module.hot && module.hot.decline) {
|
||||
module.hot.decline();
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user