15 lines
361 B
TypeScript
15 lines
361 B
TypeScript
import moment from "moment-timezone";
|
|
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;
|