revite/src/context/Locale.tsx

11 lines
295 B
TypeScript
Raw Normal View History

2021-06-18 15:18:10 +01:00
import { IntlProvider } from "preact-i18n";
import definition from "../../external/lang/en.json";
interface Props {
2021-06-18 15:57:08 +01:00
children: JSX.Element | JSX.Element[];
2021-06-18 15:18:10 +01:00
}
export default function Locale({ children }: Props) {
2021-06-18 15:57:08 +01:00
return <IntlProvider definition={definition}>{children}</IntlProvider>;
2021-06-18 15:18:10 +01:00
}