From b585bca6aae467c451c757797334a58bd2c88105 Mon Sep 17 00:00:00 2001 From: komal gavasane Date: Mon, 4 Nov 2024 20:00:00 +0530 Subject: [PATCH] converted the manage reviews html page into reactjs --- .../src/pages/bootcamps/ManageReviewsPage.jsx | 75 ++++++++++--------- 1 file changed, 38 insertions(+), 37 deletions(-) diff --git a/src/webapp/src/pages/bootcamps/ManageReviewsPage.jsx b/src/webapp/src/pages/bootcamps/ManageReviewsPage.jsx index d33064f..019d075 100644 --- a/src/webapp/src/pages/bootcamps/ManageReviewsPage.jsx +++ b/src/webapp/src/pages/bootcamps/ManageReviewsPage.jsx @@ -1,5 +1,6 @@ import React from 'react'; import { Link } from 'react-router-dom'; +import { Table, Container, Row, Col, Card, Button } from 'react-bootstrap'; import { GrEdit, GrClose } from 'react-icons/gr'; const bootcamps = [ @@ -17,44 +18,44 @@ const bootcamps = [ const ManageReviewsPage = () => { return ( -
-
-
-
-
-
-

Manage Reviews

- - - - - - - - - - {bootcamps.map((b) => ( - - - - + + +

Manage Reviews

+
BootcampRating
{b.bootCampName}{b.bootCampRating} - + + +
+ + + + + + + + + {bootcamps.map((b) => ( + + + + - - ))} - -
BootcampRating
{b.name}{b.rating} + + -
-
-
-
-
-
-
+ + + + + + ))} + + + + + + + ); };