react-use/stories/util/CenterStory.tsx
Anton Zinovyev 2832b7a37e
chore: move all stories from src directory. (#715)
chore: clean tsconfig.json;

feat: updated webpack config to export a function to achieve full-control mode, instead of deprecated Extend Mode;
2019-12-09 23:36:40 +03:00

16 lines
310 B
TypeScript

import * as React from 'react';
export const CenterStory = ({ children }) => (
<div
style={{
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
maxWidth: '400px',
margin: '40px auto',
}}
>
<div style={{ width: '100%' }}>{children}</div>
</div>
);