import "./App.css"; import Cookbook from "./pages/Cookbook.tsx"; import RecipePage from "./pages/RecipePage.tsx"; import AddRecipe from "./pages/AddRecipe.tsx"; import NavBar from "./components/NavBar.tsx"; import { Routes, Route } from "react-router-dom"; function App() { return ( <>
} /> } /> } />
); } export default App;