import React from 'react'; import './content-container.scss'; interface Props { className?: string; style?: any; } interface State {} export class ContentContainer extends React.Component { constructor(props: Props) { super(props); } render() { return (
{this.props.children}
); } }