Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import './App.css';
- import NavBar from './components/NavBar/NavBar'
- import HeroSection from './components/HeroSection/HeroSection'
- import ProjectSection from './components/ProjectSection/ProjectSection'
- function App() {
- return (
- <div className="App">
- <NavBar/>
- <main>
- <HeroSection></HeroSection>
- <ProjectSection></ProjectSection>
- </main>
- </div>
- );
- }
- export default App;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement