mirror of
https://github.com/UofCBaja/BajaUofCWebsite.git
synced 2025-06-16 13:54:17 -06:00
feat(InterviewBooking): inital main of interview booking
This commit is contained in:
parent
74cc024684
commit
1dc41aca81
12
src/Interivew Booking/InterviewBooking.js
Normal file
12
src/Interivew Booking/InterviewBooking.js
Normal file
@ -0,0 +1,12 @@
|
||||
/**
|
||||
* @param {null} null - requires onthing
|
||||
* @returns {JSX.Element} Page - HTML tags and JS functionality
|
||||
* @description The Footer of the page
|
||||
* @author Brock <darkicewolf50@gmail.com>
|
||||
* @todo add who helped developed the site and finalize css
|
||||
*/
|
||||
const interviewBooking = () => {
|
||||
return <p>Hello</p>;
|
||||
};
|
||||
|
||||
export default interviewBooking;
|
@ -9,6 +9,7 @@ import OurSponsors from "./OurSponsors/OurSponsors";
|
||||
import JoinTheClub from "./Club Membership & Upcoming Events/JoinTheClub/JoinTheClub";
|
||||
import UpcomingEvents from "./Club Membership & Upcoming Events/UpcominEvents/UpcomingEvents";
|
||||
import Gallery from "./Gallery/Gallery";
|
||||
import interviewBooking from "./Interivew Booking/InterviewBooking";
|
||||
import "./index.css";
|
||||
|
||||
const root = ReactDOM.createRoot(document.getElementById("root"));
|
||||
@ -35,6 +36,10 @@ root.render(
|
||||
<Route
|
||||
path="/Gallery"
|
||||
element={<Gallery />}></Route>
|
||||
<Route
|
||||
path="/InterviewBooking"
|
||||
element={<interviewBooking />}
|
||||
/>
|
||||
</Route>
|
||||
</Routes>
|
||||
</BrowserRouter>
|
||||
|
Loading…
x
Reference in New Issue
Block a user