You can easily show/hide questions based on form answers. You have 2 useful hooks that you can use for that:
Retrieves form answers
const formAnswers = useFormAnswers();
Retrieves the field answer
const fieldAnswer = useFieldAnswer(fieldId);
Please view this codesandbox example for more details.