Skip to content

Instantly share code, notes, and snippets.

@harsh317
Last active June 19, 2022 12:25
Show Gist options
  • Save harsh317/d6a1b5bb8ca6405c95c0816339c3c04e to your computer and use it in GitHub Desktop.
Save harsh317/d6a1b5bb8ca6405c95c0816339c3c04e to your computer and use it in GitHub Desktop.
A basic screen code which you will copy to all the screens
import React from "react";
const PagenotFound = () => { // Change here the Name accordingly
return (
<div>
<h1>Page Not Found</h1>
{/* Chnage here accordingly too */}
</div>
);
};
export default PagenotFound; // bruh Chnage here accordingly too
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment