summaryrefslogtreecommitdiff
path: root/react/04-components/src/App.jsx
blob: 5459c802a20cdf548916b9cc7e2c6e23c6820750 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import Navbar from "./components/Navbar";
import MyOtherComponent from "./components/MyOtherComponent";

function App() {
  return (
    <>
       <Navbar />

       <MyOtherComponent title="Component 1 title">
        This is component 1 description.
       </MyOtherComponent>

       <MyOtherComponent title="Component 2 title">
        This is component 2 description.
       </MyOtherComponent>
    </>
  )
}

export default App