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

Not Found

{message}

); }