diff --git a/src/components/Question/Question.tsx b/src/components/Question/Question.tsx index 95e2ace..c32134c 100644 --- a/src/components/Question/Question.tsx +++ b/src/components/Question/Question.tsx @@ -1,10 +1,21 @@ //Librairies import { FC } from 'react' +import { motion } from 'framer-motion' type QuestionProps = { question: string } export const Question: FC = ({ question }) => { - return

{question}

+ return ( + + {question} + + ) }