type NotFoundProps = { message: string; }; export function NotFound({ message }: NotFoundProps): JSX.Element { return (
{message}