blob: b7acce974002c35918049cda2bab38bf037211ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import MainNav from '@components/MainNav/MainNav';
import styles from './Toolbar.module.scss';
const Toolbar = () => {
return (
<div className={styles.wrapper}>
<MainNav />
</div>
);
};
export default Toolbar;
|