8 lines
161 B
TypeScript
8 lines
161 B
TypeScript
export default function NotFound() {
|
|
return (
|
|
<div className="flex size-full">
|
|
<div className="m-auto text-3xl">Not Found :(</div>
|
|
</div>
|
|
);
|
|
}
|