Skip to content

Instantly share code, notes, and snippets.

@tararoutray
Created October 18, 2022 02:42
Show Gist options
  • Save tararoutray/46b96f897b30aad3f9e78d8da96ec8d7 to your computer and use it in GitHub Desktop.
Save tararoutray/46b96f897b30aad3f9e78d8da96ec8d7 to your computer and use it in GitHub Desktop.
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