15 lines
320 B
TypeScript
15 lines
320 B
TypeScript
import { FC } from "react";
|
|
import { NewDateTimeFormatter } from "../../../../../../_digifi/lib/NewDateTimeFormatter";
|
|
|
|
type Props = {
|
|
added?: string;
|
|
};
|
|
|
|
const AddedCell: FC<Props> = ({ added }) => (
|
|
<div className="badge badge-light fw-bolder">
|
|
{NewDateTimeFormatter(added)}
|
|
</div>
|
|
);
|
|
|
|
export { AddedCell };
|