Skip to content

Commit

Permalink
done
Browse files Browse the repository at this point in the history
  • Loading branch information
mukilan2815 committed Jul 3, 2024
1 parent 543fa75 commit db70d1e
Show file tree
Hide file tree
Showing 14 changed files with 279 additions and 452 deletions.
18 changes: 5 additions & 13 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,10 @@ import Submittedform from "./Pages/Client/NewMember/Submittedform";
import Submittedpayment from "./Pages/Client/NewMember/Submittedpayment";
import Login from "./Pages/Client/ExistingMember/Login";

import AdminGC from "./Pages/Admin/AdminGC";
import AdminAO from "./Pages/Admin/AdminAO";
import AdminCEO from "./Pages/Admin/AdminCEO";
import AdminOB from "./Pages/Admin/AdminOB";
import AdminMC from "./Pages/Admin/AdminMC";

import Home from "./Pages/Admin/Home";
import Analysis from "./Pages/Admin/Analysis";
import LoginAdmin from "./Pages/Admin/LoginAdmin";
import Allmembers from "./Pages/Admin/Allmembers";

function App() {
return (
Expand All @@ -30,13 +26,9 @@ function App() {

{/* Admin */}

<Route path="/admin" element={<Home />} />
<Route path="/admingc" element={<AdminGC />} />
<Route path="/adminmc" element={<AdminMC />} />
<Route path="/adminao" element={<AdminAO />} />
<Route path="/adminceo" element={<AdminCEO />} />
<Route path="/adminob" element={<AdminOB />} />

<Route path="/adminhome" element={<Home />} />
<Route path="/allmembers" element={<Allmembers />} />
<Route path="/adminlogin" element={<LoginAdmin />} />
<Route path="/analysis" element={<Analysis />} />
</Routes>
</div>
Expand Down
9 changes: 9 additions & 0 deletions src/Components/ATable.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import React from 'react'

const ATable = () => {
return (
<div>ATable</div>
)
}

export default ATable
7 changes: 7 additions & 0 deletions src/Components/BTable.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import React from "react";

const BTable = () => {
return <div>BTable</div>;
};

export default BTable;
7 changes: 7 additions & 0 deletions src/Components/CTable.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import React from "react";

const CTable = () => {
return <div>CTable</div>;
};

export default CTable;
230 changes: 0 additions & 230 deletions src/Pages/Admin/AdminAO.jsx

This file was deleted.

9 changes: 0 additions & 9 deletions src/Pages/Admin/AdminCEO.jsx

This file was deleted.

Loading

0 comments on commit db70d1e

Please sign in to comment.