aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/Sidebar/Sidebar.tsx
blob: 8c9fa1d5f46d55cf243814d4b0a25a70ace3e18f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import { FunctionComponent } from 'react';
import styles from './Sidebar.module.scss';

const Sidebar: FunctionComponent = ({ children }) => {
  return (
    <aside className={styles.wrapper}>
      <div className={styles.body}>{children}</div>
    </aside>
  );
};

export default Sidebar;