Liam
9e0a914ccb
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 57s
13 lines
274 B
TypeScript
13 lines
274 B
TypeScript
type NotFoundProps = {
|
|
message: string;
|
|
};
|
|
|
|
export function NotFound({ message }: NotFoundProps) {
|
|
return (
|
|
<div className="flex flex-col justify-center text-center">
|
|
<h1 className="text-xl text-red-400">Not Found</h1>
|
|
<p>{message}</p>
|
|
</div>
|
|
);
|
|
}
|