import { useState } from "react"; import { Outlet, useParams } from "react-router-dom"; import Main from "./components/main"; import "./App.css"; import Navbar from "./components/navbar"; function App() { const { path } = useParams(); const [cartItems, setCartItems] = useState(0); return ( <> {path === "cart" ? : path === "store" ? :
} ); } export default App;