FPSMS-frontend
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

4 月之前
4 月之前
4 月之前
12345678910111213
  1. import { I18nProvider } from "@/i18n";
  2. export default function M18SyncLayout({
  3. children,
  4. }: {
  5. children: React.ReactNode;
  6. }) {
  7. return (
  8. <I18nProvider namespaces={["m18Sync", "navigation", "common"]}>
  9. {children}
  10. </I18nProvider>
  11. );
  12. }