recipe author and stars and a bit of cleanup
This commit is contained in:
parent
c47dac9986
commit
6f43d17ddd
21 changed files with 361 additions and 207 deletions
|
@ -3,6 +3,8 @@ import Index from "./pages/Index.tsx";
|
|||
import RecipePage from "./pages/RecipePage.tsx";
|
||||
import AddRecipe from "./pages/AddRecipe.tsx";
|
||||
import About from "./pages/About.tsx"
|
||||
import RecipeIngredients from "./pages/RecipeIngredients.tsx"
|
||||
import RecipeSteps from "./pages/RecipeSteps.tsx"
|
||||
|
||||
import RecipeBookTabs from "./components/RecipeBookTabs.tsx";
|
||||
import { Routes, Route } from "react-router-dom";
|
||||
|
@ -17,6 +19,8 @@ function App() {
|
|||
<Route path="/recipe/:id" element={<RecipePage />} />
|
||||
<Route path="/add-recipe" element={<AddRecipe />} />
|
||||
<Route path="/about" element={<About />} />
|
||||
<Route path="/recipe-ingredients" element={<RecipeIngredients />} />
|
||||
<Route path="/recipe-steps" element={<RecipeSteps />} />
|
||||
</Routes>
|
||||
</main>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue