11 lines
298 B
JavaScript
11 lines
298 B
JavaScript
import React from "react";
|
|
import Moment from "react-moment";
|
|
|
|
export function DateFormatter(props) {
|
|
return <Moment format="MM/DD/YYYY">{props.children || ""}</Moment>;
|
|
}
|
|
|
|
export function DateTimeFormatter(props) {
|
|
return <Moment format="MM/DD/YYYY @ HH:MM">{props.children || ""}</Moment>;
|
|
}
|