12 lines
187 B
TypeScript
12 lines
187 B
TypeScript
type NavbarProps = {
|
|
pages: Record<string, string>;
|
|
};
|
|
|
|
export default function Navbar(props: NavbarProps) {
|
|
return (
|
|
<>
|
|
<p>{JSON.stringify(props.pages)}</p>
|
|
</>
|
|
);
|
|
}
|