import Link from "../link"; import CreateScreen from "./util"; /** * Executes Screen. * @param props Parameter props. * @returns unknown. */ export default function Screen(props: { error: string; description: string }) { return (

{props.error}

{props.description}

); }