import { QuestionFragment } from "../../fragments.generated"; import { getBasePath } from "../../utils"; type Props = { question: QuestionFragment; linkToMetaforecast?: boolean; }; export const QuestionTitle: React.FC = ({ question, linkToMetaforecast, }) => (

{question.title}

);