Skip to content

Commit

Permalink
Create App.js
Browse files Browse the repository at this point in the history
Signed-off-by: Raydo M <[email protected]>
  • Loading branch information
burnt-exe authored Sep 6, 2024
1 parent df4d98f commit da593d3
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions comptia/src/App.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import React from 'react';
import { BrowserRouter as Router, Route, Switch } from 'react-router-dom';
import CompTIACertificationsPage from './components/CompTIACertificationsPage';

function App() {
return (
<Router>
<Switch>
<Route path="/comptia" component={CompTIACertificationsPage} />
{/* Add more routes here if necessary */}
</Switch>
</Router>
);
}

export default App;

0 comments on commit da593d3

Please sign in to comment.