Browse Source

test payment

master
azri 1 week ago
parent
commit
375310861b
2 changed files with 3 additions and 3 deletions
  1. 1
    1
      src/App.js
  2. 2
    2
      src/index.js

+ 1
- 1
src/App.js View File

@@ -53,7 +53,7 @@ function App() {
53 53
       <BrowserRouter>
54 54
         <Routes>
55 55
           <Route path='/' element={<Maintainance />} />
56
-          <Route path='/cacatest' element={<Home />} />
56
+          <Route path='/testing1' element={<Home />} />
57 57
           <Route path='/login' element={<Login />} />
58 58
 
59 59
           <Route path='products'>

+ 2
- 2
src/index.js View File

@@ -31,8 +31,8 @@ import Maintainance from './pages/Maintainance';
31 31
 const root = ReactDOM.createRoot(document.getElementById('root'));
32 32
 root.render(
33 33
   <Provider store={store}>
34
-    <Maintainance/>
35
-    {/* <App /> */}
34
+    {/* <Maintainance/> */}
35
+    <App />
36 36
   </Provider>
37 37
 );
38 38
 

Loading…
Cancel
Save