Skip to content

Commit

Permalink
comment out power calc
Browse files Browse the repository at this point in the history
  • Loading branch information
ayan4m1 committed Sep 22, 2024
1 parent 471f42c commit 60a7158
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const NicCalculator = lazy(() => import('pages/NicCalculator'));
const CostCalculator = lazy(() => import('pages/CostCalculator'));
const WiringCalculator = lazy(() => import('pages/WiringCalculator'));
const SpoolCalculator = lazy(() => import('pages/SpoolCalculator'));
const PowerCalculator = lazy(() => import('pages/PowerCalculator'));
// const PowerCalculator = lazy(() => import('pages/PowerCalculator'));

const root = createRoot(document.getElementById('root'));

Expand All @@ -40,7 +40,7 @@ root.render(
<Route element={<CostCalculator />} path="/cost" />
<Route element={<WiringCalculator />} path="/wiring" />
<Route element={<SpoolCalculator />} path="/spool" />
<Route element={<PowerCalculator />} path="/power" />
{/* <Route element={<PowerCalculator />} path="/power" /> */}
</Routes>
</Suspense>
</Layout>
Expand Down

0 comments on commit 60a7158

Please sign in to comment.