chore: add header component

This commit is contained in:
2023-12-28 12:27:18 +01:00
parent d12769107c
commit adf3ed2b62
6 changed files with 97 additions and 65 deletions

View File

@@ -0,0 +1,11 @@
import s from './header.module.scss'
export type HeaderProps = {
avatar?: string
name?: string
onLogout?: () => void
}
export const Header = ({}: HeaderProps) => {
return <div>Header</div>
}