Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
nandkishorr committed Jan 31, 2024
1 parent dcfa4cc commit e6fa187
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import ReactDOM from 'react-dom';
import { BrowserRouter as Router, Route, Routes } from 'react-router-dom';
import App from './App.jsx';
import Eventpage from './Pages/EventPage/Eventpage';
import ContactUs from '../src/Components/ContactUs/ContactUs';
// import ContactUs from './Components/ContactUs/ContactUs';
import './index.css';

const rootElement = document.getElementById('root');
Expand All @@ -12,7 +12,7 @@ const app = (
<Routes>
<Route path="/" element={<App />} />
<Route path="/events" element={<Eventpage />} />
<Route path="/contact" element={<ContactUs />} />
{/* <Route path="/contact" element={<ContactUs />} /> */}
</Routes>
</Router>
);
Expand Down

0 comments on commit e6fa187

Please sign in to comment.