initial commit

This commit is contained in:
victorAnumudu
2024-05-15 20:22:33 +01:00
parent c711e000b3
commit 3a35a34266
226 changed files with 5808 additions and 5819 deletions
@@ -0,0 +1,14 @@
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 };