import React from "react";
import moment from "moment";
import Moment from "react-moment";
import { Tooltip } from "antd";
export function DateFormatter(props) {
return props.children ? (
{props.children}
) : null;
}
export function DateTimeFormatter(props) {
return props.children ? (
{props.children}
) : null;
}
export function TimeAgoFormatter(props) {
const m = moment(props.children);
return props.children ? (
{m.fromNow()}
) : null;
}