import React, { FC, } from "react"; import { SideBar } from "./SideBar"; import { SelectedQuestionCard } from "./SelectedQuestionCard"; type Props = { questions: { id: string, label: string, removeHandler: Function }[] } export const SelectedQuestionsSideBar: FC = ({ questions }) => { return (
{questions.length ? questions.map(q => ) :

Nenhuma questão selecionada

}
) }