import { List } from "antd"; import { WarningFilled, EyeInvisibleFilled, AuditOutlined, } from "@ant-design/icons"; import React from "react"; import { useTranslation } from "react-i18next"; import CardTemplate from "./job-detail-cards.template.component"; import styled from "styled-components"; const Container = styled.div` height: 100%; overflow-y: auto; `; export default function JobDetailCardsNotesComponent({ loading, data }) { const { t } = useTranslation(); return ( {data ? ( ( {item.critical ? ( ) : null} {item.private ? : null} {item.audit ? : null} {item.text} )} /> ) : null} ); }