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

Not Found

{message}

); }