From f7b08ee862e62b9f8764303f1fef733f210a7138 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Mon, 20 Dec 2021 15:18:49 +0100 Subject: chore: add a toolbar component --- src/components/Toolbar/Toolbar.tsx | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/components/Toolbar/Toolbar.tsx (limited to 'src/components/Toolbar/Toolbar.tsx') diff --git a/src/components/Toolbar/Toolbar.tsx b/src/components/Toolbar/Toolbar.tsx new file mode 100644 index 0000000..b7acce9 --- /dev/null +++ b/src/components/Toolbar/Toolbar.tsx @@ -0,0 +1,12 @@ +import MainNav from '@components/MainNav/MainNav'; +import styles from './Toolbar.module.scss'; + +const Toolbar = () => { + return ( +
+ +
+ ); +}; + +export default Toolbar; -- cgit v1.2.3