first commit
This commit is contained in:
12
components/header/Header.jsx
Normal file
12
components/header/Header.jsx
Normal file
@ -0,0 +1,12 @@
|
||||
import { HStack } from '@chakra-ui/react';
|
||||
import { Logo } from './Logo';
|
||||
import { Navigation } from './Navigation';
|
||||
|
||||
export function Header() {
|
||||
return (
|
||||
<HStack justify="space-between">
|
||||
<Logo />
|
||||
<Navigation />
|
||||
</HStack>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user