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.

14 lines
252 B

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