diff --git a/package.json b/package.json
index 924e778..0b84cb3 100644
--- a/package.json
+++ b/package.json
@@ -22,6 +22,7 @@
"react-icons": "^4.12.0",
"react-icons-kit": "^2.0.0",
"react-modal": "^3.16.1",
+ "react-rating": "^2.0.5",
"react-router-dom": "^6.16.0",
"react-scripts": "5.0.1",
"react-spinners": "^0.13.8",
diff --git a/src/components/Ratings.jsx b/src/components/Ratings.jsx
new file mode 100644
index 0000000..017f6df
--- /dev/null
+++ b/src/components/Ratings.jsx
@@ -0,0 +1,29 @@
+import * as React from 'react';
+import { useContext } from 'react';
+import Box from '@mui/material/Box';
+import Rating from '@mui/material/Rating';
+import Typography from '@mui/material/Typography';
+import { ThemeContext } from '../themeContext';
+
+export default function BasicRating() {
+ const [value, setValue] = React.useState(2);
+ const { theme, toggleTheme } = useContext(ThemeContext);
+
+ return (
+ Rate Canteen
+