FPSMS-frontend
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

layout.tsx 254 B

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. }