aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/Header/Header.tsx
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2021-12-20 15:18:49 +0100
committerArmand Philippot <git@armandphilippot.com>2021-12-20 15:23:27 +0100
commitf7b08ee862e62b9f8764303f1fef733f210a7138 (patch)
tree1273bc8d85a5d3205310f5a26005cc79d1dc3a50 /src/components/Header/Header.tsx
parentfa6adedc42e9c6ec39cc30df16b54900c220b094 (diff)
chore: add a toolbar component
Diffstat (limited to 'src/components/Header/Header.tsx')
-rw-r--r--src/components/Header/Header.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/Header/Header.tsx b/src/components/Header/Header.tsx
index 6691eb9..9f2c454 100644
--- a/src/components/Header/Header.tsx
+++ b/src/components/Header/Header.tsx
@@ -1,5 +1,5 @@
import Branding from '@components/Branding/Branding';
-import MainNav from '@components/MainNav/MainNav';
+import Toolbar from '@components/Toolbar/Toolbar';
import styles from './Header.module.scss';
const Header = ({ isHome }: { isHome: boolean }) => {
@@ -7,7 +7,7 @@ const Header = ({ isHome }: { isHome: boolean }) => {
<header className={styles.wrapper}>
<div className={styles.body}>
<Branding isHome={isHome} />
- <MainNav />
+ <Toolbar />
</div>
</header>
);