-
-
Notifications
You must be signed in to change notification settings - Fork 841
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature/play/zoomlogin refactor1 (#1554)
* feat(play/zoomlogin): add new Zoom login and chatbot clone project * * fix(play/schulte-tables): fix plain class name to prevent from potential overriding issue * refactor cursor pointer * remove unused file * refactor label htmlFor * * refactor: remove unused files (#1554) * refactor: remove unused files --------- Co-authored-by: Priyankar Pal <[email protected]> --------- Co-authored-by: Priyankar Pal <[email protected]>
- Loading branch information
1 parent
56424d2
commit dc58208
Showing
13 changed files
with
50 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import { BrowserRouter, Route, Routes } from 'react-router-dom'; | ||
import App from './components/App'; | ||
import HomePage from './components/HomePage'; | ||
import LinkedinPage from './components/Linkedin/LinkedinPage'; | ||
import ZoomPage from './components/Zoom/ZoomPage'; | ||
|
||
export function MainPage() { | ||
return ( | ||
<BrowserRouter basename="/react-login-form"> | ||
<App> | ||
<Routes> | ||
<Route element={<HomePage />} path="/" /> | ||
<Route element={<LinkedinPage />} path="/linkedin" /> | ||
<Route element={<ZoomPage />} path="/zoom" /> | ||
</Routes> | ||
</App> | ||
</BrowserRouter> | ||
); | ||
} | ||
export default MainPage; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters