We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8198b6b commit 7e3318eCopy full SHA for 7e3318e
src/plays/zoomlogin/MainPage.js
@@ -1,6 +1,7 @@
1
import { BrowserRouter, Route, Routes } from 'react-router-dom';
2
import App from './components/App';
3
-import HomePage from './components/MainPage';
+import HomePage from './components/HomePage';
4
+import LinkedinPage from './components/Linkedin/LinkedinPage';
5
import ZoomPage from './components/Zoom/ZoomPage';
6
7
export function MainPage() {
@@ -9,10 +10,11 @@ export function MainPage() {
9
10
<App>
11
<Routes>
12
<Route element={<HomePage />} path="/" />
13
+ <Route element={<LinkedinPage />} path="/linkedin" />
14
<Route element={<ZoomPage />} path="/zoom" />
15
</Routes>
16
</App>
17
</BrowserRouter>
18
);
19
}
-export default MainPage;
20
+export default MainPage;
0 commit comments