Advertisement
MartinYanchev-99

app.js

Oct 28th, 2021
966
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import './App.css';
  2. import NavBar from './components/NavBar/NavBar'
  3. import HeroSection from './components/HeroSection/HeroSection'
  4. import ProjectSection from './components/ProjectSection/ProjectSection'
  5. function App() {
  6.   return (
  7.     <div className="App">
  8.             <NavBar/>
  9.             <main>
  10.             <HeroSection></HeroSection>
  11.             <ProjectSection></ProjectSection>
  12.             </main>
  13.          
  14.     </div>
  15.   );
  16. }
  17.  
  18. export default App;
  19.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement