diff --git a/src/webapp/src/pages/bootcamps/AddReviewPage.jsx b/src/webapp/src/pages/bootcamps/AddReviewPage.jsx index f4807dc..cc3483b 100644 --- a/src/webapp/src/pages/bootcamps/AddReviewPage.jsx +++ b/src/webapp/src/pages/bootcamps/AddReviewPage.jsx @@ -1,6 +1,7 @@ -import { AiOutlineLeft } from 'react-icons/ai'; -import { Link, useParams } from 'react-router-dom'; // Import useParams to get bootcampId from URL import React, { useState } from 'react'; +import { Link, useParams } from 'react-router-dom'; +import { Form, Button, Container, Row, Col, Card } from 'react-bootstrap'; +import { AiOutlineLeft } from 'react-icons/ai'; const AddReviewPage = () => { const { bootcampId } = useParams(); // Get bootcampId from URL parameters @@ -12,12 +13,11 @@ const AddReviewPage = () => { return (
-
-
-
-
-
- {/* Update Link to go back to the specific bootcamp details */} + + + + + Bootcamp Info @@ -26,40 +26,40 @@ const AddReviewPage = () => {

Write a Review

You must have attended and graduated this bootcamp to review.


-
-
- - + -
+ -
- -
+ + + -
- -
+ + + -
- -
-
-
-
-
-
-
+ + + + + + +
); };