// @flow import React from 'react'; import styles from './CenteredContent.scss'; type Props = { children: any, style: Object, maxWidth: string, }; const CenteredContent = (props: Props) => { const style = { maxWidth: props.maxWidth, ...props.style, }; return (
{props.children}
); }; CenteredContent.defaultProps = { maxWidth: '740px', }; export default CenteredContent;