blob: e61ac63434bcdc94ac8500615dbbeaf511a67fe6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import React from 'react';
interface Props {
navigation: {
name: string;
route: string;
}[];
}
const Header: React.FC<Props> = ({ children, navigation }) => {
return (
<header className="bg-black text-white flex">
{navigation.map(({ name, route }) => (
<a href={route} className="py-6 px-8 font-bold tracking-wide hover:underline">{name}</a>
))}
</header>
);
};
export default Header;
|