13 lines
375 B
TypeScript
13 lines
375 B
TypeScript
import React from 'react';
|
|
import { Outlet } from 'react-router-dom';
|
|
import { LocaleProvider } from '@/guest/i18n/LocaleContext';
|
|
import { DEFAULT_LOCALE } from '@/guest/i18n/messages';
|
|
|
|
export default function GuestLocaleLayout() {
|
|
return (
|
|
<LocaleProvider defaultLocale={DEFAULT_LOCALE} storageKey="guestLocale_global">
|
|
<Outlet />
|
|
</LocaleProvider>
|
|
);
|
|
}
|