๐Ÿ“ฆ Krish-bhardwaj / Demo-App

๐Ÿ“„ App.js ยท 16 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16import React from 'react';
import { Route, Routes } from 'react-router';
import Checkout from './Components/FooterItems';
import Products from './Components/ProductGrid';

function App() {
  return (
    <Routes>
      <Route path="/" element={<Products />} />
      <Route path="/checkout" element={<Checkout />} />
    </Routes>
  );
}

export default App;