Initial Commit
This commit is contained in:
19
mvp-platform-services/landing/src/App.tsx
Normal file
19
mvp-platform-services/landing/src/App.tsx
Normal file
@@ -0,0 +1,19 @@
|
||||
import { Routes, Route } from 'react-router-dom'
|
||||
import HomePage from './components/HomePage'
|
||||
import TenantSignup from './components/TenantSignup'
|
||||
import CallbackHandler from './components/CallbackHandler'
|
||||
|
||||
function App() {
|
||||
|
||||
return (
|
||||
<div className="App">
|
||||
<Routes>
|
||||
<Route path="/" element={<HomePage />} />
|
||||
<Route path="/signup/:tenantId" element={<TenantSignup />} />
|
||||
<Route path="/callback" element={<CallbackHandler />} />
|
||||
</Routes>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
export default App
|
||||
Reference in New Issue
Block a user