Merge pull request #56 from bluewave-labs/client/subroutes

Added subroutes to homelayout and created basic components resolves #45
This commit is contained in:
Veysel
2024-05-22 20:20:43 -04:00
committed by GitHub
12 changed files with 57 additions and 5 deletions

View File

@@ -6,12 +6,23 @@ import Register from "./Pages/Register";
import HomeLayout from "./Layouts/HomeLayout";
import Demo from "./Pages/Demo/Demo";
import PlayGround from "./Pages/PlayGround/PlayGround";
import Monitors from "./Pages/Monitors"
import Incidents from "./Pages/Incidents";
import Status from "./Pages/Status";
import Integrations from "./Pages/Integrations";
import Settings from "./Pages/Settings";
function App() {
return (
<>
<Routes>
<Route exact path="/" element={<HomeLayout />} />
<Route exact path="/" element={<HomeLayout />} >
<Route path="monitors" element={<Monitors />} />
<Route path="incidents" element={<Incidents />} />
<Route path="status" element={<Status />} />
<Route path="integrations" element={<Integrations />} />
<Route path="settings" element={<Settings />} />
</Route>
<Route exact path="/register" element={<Register />} />
<Route exact path="/login" element={<Login />} />
<Route exact path="/demo" element={<Demo />} />

View File

@@ -8,10 +8,6 @@ const Home = () => {
return (
<>
<div>Home</div>
<DropdownTeamMember />
<Search />
<DashboardMenu />
<Integrations />
</>
);
};

View File

View File

@@ -0,0 +1,9 @@
import React from 'react'
const Incidents = () => {
return (
<div>Incidents</div>
)
}
export default Incidents

View File

View File

@@ -0,0 +1,9 @@
import React from 'react'
const Integrations = () => {
return (
<div>Integrations</div>
)
}
export default Integrations

View File

View File

@@ -0,0 +1,9 @@
import React from 'react'
const Monitors = () => {
return (
<div>Monitors</div>
)
}
export default Monitors

View File

View File

@@ -0,0 +1,9 @@
import React from 'react'
const Settings = () => {
return (
<div>Settings</div>
)
}
export default Settings

View File

View File

@@ -0,0 +1,9 @@
import React from 'react'
const Status = () => {
return (
<div>Status</div>
)
}
export default Status