import * as React from 'react'; type Props = { readonly children?: React.ReactNode; }; export function Header({ children }: Props) { return (
{children}
); }