Skip to main content
Module

x/aleph/examples/react-app/routes/_404.tsx

The Full-stack Framework in Deno.
Very Popular
Go to Latest
File
import { Link } from "aleph/react";
export default function E404() { return ( <div className="screen e404"> <h2> Ooooooops, nothing here! </h2> <p> <Link to="/"> Go back to the homepage </Link> </p> </div> );}