diff --git a/src/App.jsx b/src/App.jsx index 7743965b..b86833e0 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -32,28 +32,56 @@ function App() { */ return ( +
- Finish the assignment! Look at the comments in App.jsx as a starting point + + + +
- ) +
+ ); } -// A demo component -function ProblemStatement(props) { - const title = props.title; - const acceptance = props.acceptance; - const difficulty = props.difficulty; - - return - - {title} - - - {acceptance} - - - {difficulty} - - +function LoginPage() { + return
Login Page
; } -export default App + +function SignupPage() { + return
Signup Page
; +} + +function AllProblemsPage() { + return ( +
+

All Problems

+ + + + + + + + + + {problems.map((problem, index) => ( + + + + + + ))} + +
TitleAcceptanceDifficulty
+ {problem.title} + {problem.acceptance}{problem.difficulty}
+
+ ); +} + +function SingleProblemPage() { + return
Single Problem Page
; +} + +export default App; +