Created
October 18, 2022 02:42
-
-
Save tararoutray/46b96f897b30aad3f9e78d8da96ec8d7 to your computer and use it in GitHub Desktop.
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'; | |
import { Container } from 'react-bootstrap'; | |
const Home = () => { | |
return ( | |
<React.Fragment> | |
<Container className='py-5'> | |
<h3 className='fw-normal'>Welcome Home.</h3> | |
</Container> | |
</React.Fragment> | |
) | |
} | |
export default Home; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment