metaforecast/src/web/questions/components/QuestionTitle.tsx
2022-05-26 17:11:19 +04:00

27 lines
586 B
TypeScript

import { QuestionFragment } from "../../fragments.generated";
import { getBasePath } from "../../utils";
type Props = {
question: QuestionFragment;
linkToMetaforecast?: boolean;
};
export const QuestionTitle: React.FC<Props> = ({
question,
linkToMetaforecast,
}) => (
<h1 className="sm:text-3xl text-xl">
<a
className="text-black no-underline hover:text-gray-700"
href={
linkToMetaforecast
? getBasePath() + `/questions/${question.id}`
: question.url
}
target="_blank"
>
{question.title}
</a>
</h1>
);