web-base/react/shared/locale/english.js

14 lines
302 B
JavaScript
Raw Normal View History

2022-11-29 14:17:11 +01:00
import React from "react";
import { enUS as dateFnsEN } from "date-fns/locale/index.js";
export default class LocaleEnglish {
constructor() {
this.code = "en_US";
this.name = "American English";
this.entries = {};
}
toDateFns() {
return dateFnsEN;
}
};