import React from 'react'; import { BrowserRouter as Router, Route, Routes } from 'react-router-dom'; import Register from './components/AuthenticationComponents/Register'; import Login from './components/AuthenticationComponents/Login'; import ProfileView from "./components/ProfileView"; import Home from "./components/Home"; import './css/index.css'; import Recipes from './components/RecipesComponents/Recipes'; import ApplicationForm from './components/ApplicationForm'; import RecipeCard from "./components/RecipesComponents/RecipeCard"; import About from "./components/About"; import AdminView from "./components/AdminView"; import DeliveryView from "./components/DeliveryView"; import { CartProvider } from './components/ShoppingCartComponents/CartContext'; import Checkout from './components/ShoppingCartComponents/Checkout'; import DeliveryDetails from './components/ShoppingCartComponents/DeliveryDetails'; import { OrderProvider } from './components/ShoppingCartComponents/OrderContext'; import OrderNotification from './components/ShoppingCartComponents/OrderNotification'; import DeliveryReview from './components/ShoppingCartComponents/DeliveryReview'; import RecipeApplication from "./components/RecipesComponents/RecipeApplication"; const App = () => { return ( } /> } /> } /> } /> } /> } /> } /> } /> } /> } /> } /> } /> } /> }/> } /> ); } export default App;