NotFoundPage.tsx 159 B

12345678
  1. import React from "react"
  2. export default function NotFoundPage(){
  3. return(
  4. <div>
  5. <h1>HTTP Status 404 - Not Found</h1>
  6. </div>
  7. )
  8. }