diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2025-04-27 23:17:46 -0600 |
---|---|---|
committer | Navan Chauhan <navanchauhan@gmail.com> | 2025-04-27 23:17:46 -0600 |
commit | 1ac28532969429f90fc3b4fe666e58ace807d17a (patch) | |
tree | a67d449b93a4656bf8be902d70142ee3ad1fe1bd /client/src/App.js | |
parent | 03183c0ca28abc968d77ed842a387a1da73af61b (diff) |
fix imports
Diffstat (limited to 'client/src/App.js')
-rw-r--r-- | client/src/App.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/client/src/App.js b/client/src/App.js index 5134310..c85e46c 100644 --- a/client/src/App.js +++ b/client/src/App.js @@ -1,8 +1,6 @@ import React, { useState, createContext } from 'react'; import { Routes, Route, Navigate, Link, useLocation } from 'react-router-dom'; -import MarketDataPage from './MarketDataPage'; -import BidsPage from './BidsPage'; -import SubmitBidPage from './SubmitBidPage'; +import { MarketDataPage, BidsPage, SubmitBidPage } from './components'; import { Menu, Select, PageHeader, Typography } from '@arco-design/web-react'; import '@arco-design/web-react/dist/css/arco.css'; |