import { FC } from "react"; import { NewDateTimeFormatter } from "../../../../../../_digifi/lib/NewDateTimeFormatter"; type Props = { added?: string; }; const AddedCell: FC = ({ added }) => (
{NewDateTimeFormatter(added)}
); export { AddedCell };