Started adding responsiveness

This commit is contained in:
“Henry-Hiles” 2022-11-03 14:12:52 -04:00
parent 93c6bc7e80
commit 7b2bd29f62
13 changed files with 230 additions and 173 deletions

View file

@ -4,11 +4,9 @@ import Movie from "pages/Movie"
import Actor from "pages/Actor"
import Ratings from "pages/Ratings"
import styles from "styles/App.module.css"
import TopBar from "components/TopBar"
const App = () => (
<div className={styles.App}>
<TopBar />
<Routes>
<Route index element={<Home />} />
<Route path="/movie/:movieId" element={<Movie />} />