import { FunctionComponent } from 'react'; import styles from './Sidebar.module.scss'; const Sidebar: FunctionComponent = ({ children }) => { return ( ); }; export default Sidebar;