export interface ErrorViewProps { message: string; } export function ErrorView({ message }: ErrorViewProps) { return (

{message}

); }