diff --git a/src/components/GptResults.js b/src/components/GptResults.js index 9e6cfa4..c9140d4 100644 --- a/src/components/GptResults.js +++ b/src/components/GptResults.js @@ -7,7 +7,7 @@ const GptResults = () => { if (!movieNames) return null; return ( -
+
{movieNames.map((name, index) => (

{name}

diff --git a/src/components/MovieInfo.js b/src/components/MovieInfo.js index 8afc918..94a30cb 100644 --- a/src/components/MovieInfo.js +++ b/src/components/MovieInfo.js @@ -4,14 +4,14 @@ import { faPlay, faCircleInfo } from "@fortawesome/free-solid-svg-icons"; const MovieInfo = ({ title, overview }) => { return ( -
+

{title}

{overview}

-