2019-08-09 10:26:22 +00:00
|
|
|
import moment from "moment-timezone";
|
2019-06-19 14:40:52 +00:00
|
|
|
import { useContext } from "react";
|
|
|
|
|
|
|
|
import { LocaleContext } from "@saleor/components/Locale";
|
|
|
|
|
|
|
|
function useDateLocalize(): (date: string) => string {
|
|
|
|
const locale = useContext(LocaleContext);
|
|
|
|
|
|
|
|
return (date: string) =>
|
|
|
|
moment(date)
|
|
|
|
.locale(locale)
|
|
|
|
.format("ll");
|
|
|
|
}
|
|
|
|
|
|
|
|
export default useDateLocalize;
|