/* eslint-disable react/no-unescaped-entities */ import React from "react"; import cls from "./content.module.scss"; import SupportCard from "components/supportCard/supportCard"; import { ICareer } from "interfaces/career.interface"; type Props = { data?: ICareer; }; export default function CareersContent({ data }: Props) { return (

{data?.translation?.title}

{data?.category?.translation?.title}, {data?.translation?.address}

); }