From da593d3c0f400c10decb817483c0d353611de0be Mon Sep 17 00:00:00 2001 From: Raydo M <126121348+burnt-exe@users.noreply.github.com> Date: Fri, 6 Sep 2024 17:40:34 +0200 Subject: [PATCH] Create App.js Signed-off-by: Raydo M <126121348+burnt-exe@users.noreply.github.com> --- comptia/src/App.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 comptia/src/App.js diff --git a/comptia/src/App.js b/comptia/src/App.js new file mode 100644 index 0000000..b3e009d --- /dev/null +++ b/comptia/src/App.js @@ -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 ( + + + + {/* Add more routes here if necessary */} + + + ); +} + +export default App;