diff --git a/src/components/Movie/Movie.jsx b/src/components/Movie/Movie.jsx index e69de29..0f7a733 100644 --- a/src/components/Movie/Movie.jsx +++ b/src/components/Movie/Movie.jsx @@ -0,0 +1,30 @@ +import { Typography, Grid, Grow, Tooltip, Rating } from '@mui/material'; +import { Link } from 'react-router-dom'; + +import useStyles from './styles'; + +function Movie({ movie, i }) { + const classes = useStyles(); + + return ( + + + + {movie.title} + {movie.title} + +
+ +
+
+ +
+
+ ); +} + +export default Movie; \ No newline at end of file