Roadmap to becoming a developer in 2022
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
241 B

import Header from '../../components/header/index';
import HeroSection from '../../components/hero-section';
export const Home = (props) => (
<div className='container'>
<Header />
<HeroSection />
</div>
);
export default Home;