import * as React from 'react'; import cn from 'classnames'; import { withPadding } from 'src/components/hoc/withPadding'; interface MainProps { className?: string; } const Main: React.SFC = ({ children, className }) => { const cnMain = cn('d-flex', 'flex-column', className); return (
{children}
); }; export default withPadding(Main);