import React from 'react'; import ContentCss from './content.module.css'; export type Props = { children?: any; }; export const Content = (props: Props) => { return (
{props.children}
); }; export default Content;