import { Button, Container, Group, Text, Title } from "@mantine/core"; import classes from "./ErrorPage.module.css"; export interface ErrorPageProps { label?: string | null; title?: string | null; description?: string | null; } export default function ErrorPage(props: ErrorPageProps) { return (
{props.label}
{props.title} {props.description}
); }