Last active
June 19, 2022 12:25
-
-
Save harsh317/d6a1b5bb8ca6405c95c0816339c3c04e to your computer and use it in GitHub Desktop.
A basic screen code which you will copy to all the screens
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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