UNPKG
@kadira/react-storybook-decorator-centered
Version:
latest (1.1.2)
1.1.2
1.1.1
1.0.0
React Storybook decorator to center components
@kadira/react-storybook-decorator-centered
/
index.js
17 lines
(14 loc)
•
270 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import
React
from
'react'
;
const
style = {
position
:
'fixed'
,
top
:
0
,
left
:
0
,
bottom
:
0
,
right
:
0
,
display
:
'flex'
,
alignItems
:
'center'
,
justifyContent
:
'center'
};
export
default
function
(
storyFn
) {
return
<
div
style
=
{style}
>
{storyFn()}
</
div
>
; }