mirror of
https://github.com/ershisan99/flashcards-example-project.git
synced 2025-12-19 12:33:25 +00:00
chore: add header component
This commit is contained in:
11
src/components/ui/header/header.tsx
Normal file
11
src/components/ui/header/header.tsx
Normal 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>
|
||||
}
|
||||
Reference in New Issue
Block a user