mirror of
https://github.com/ershisan99/flashcards-example-project.git
synced 2025-12-18 12:33:22 +00:00
12 lines
201 B
TypeScript
12 lines
201 B
TypeScript
import s from './header.module.scss'
|
|
|
|
export type HeaderProps = {
|
|
avatar?: string
|
|
name?: string
|
|
onLogout?: () => void
|
|
}
|
|
|
|
export const Header = ({}: HeaderProps) => {
|
|
return <div>Header</div>
|
|
}
|