aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/Header/Header.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Header/Header.tsx')
-rw-r--r--src/components/Header/Header.tsx11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/components/Header/Header.tsx b/src/components/Header/Header.tsx
new file mode 100644
index 0000000..599fdc0
--- /dev/null
+++ b/src/components/Header/Header.tsx
@@ -0,0 +1,11 @@
+import Branding from '@components/Branding/Branding';
+
+const Header = () => {
+ return (
+ <header>
+ <Branding />
+ </header>
+ );
+};
+
+export default Header;