import styles from "./Content.module.scss"; type Props = { children: unknown; }; const Content = ({ children }: Props) =>
{children}
; export default Content;