mirror of
https://github.com/rzmk/learnhouse.git
synced 2025-12-18 20:09:25 +00:00
8 lines
133 B
TypeScript
8 lines
133 B
TypeScript
import React from 'react'
|
|
import { Menu } from './menu'
|
|
|
|
export const Header = () => {
|
|
return (
|
|
<div><Menu></Menu></div>
|
|
)
|
|
}
|