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