Skip to content

Commit

Permalink
Merge pull request #26 from ananyapillai72/patch-1
Browse files Browse the repository at this point in the history
Update App.js
  • Loading branch information
neerajbelsare authored Oct 3, 2023
2 parents 4c285cb + d6790d5 commit 641831f
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions frontend/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ import { BrowserRouter as Router, Routes, Route } from "react-router-dom";
import LoginForm from "./pages/Login/Login";
import SignupScreen from "./pages/Signup/SignupScreen";
import SignupTab3 from "./pages/Signup/components/SignupTab3";
import styles from './MyStyle.css';


function App() {
return (
<div className="App">
Expand All @@ -18,8 +21,26 @@ function App() {
<Route exact path="/register1" element={<SignupTab3 />} />
</Routes>
</Router>

<div class="container">
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<div
style={{
display: 'flex',
justifyContent: 'center', // Horizontally center
alignItems: 'flex-start', // Align to the top // 100% of the viewport height
}}
>
<h2 style={{ padding: '10px', marginTop: '20px', fontFamily: 'Arial, sans-serif'}}>Loading...</h2>
</div>
</div>
</div>
);
}


export default App;

0 comments on commit 641831f

Please sign in to comment.