打磨细节
This commit is contained in:
15
components/Providers.tsx
Normal file
15
components/Providers.tsx
Normal file
@@ -0,0 +1,15 @@
|
||||
'use client';
|
||||
|
||||
import { LanguageProvider } from '@/contexts/LanguageContext';
|
||||
import TransitionWrapper from './TransitionWrapper';
|
||||
import { ReactNode } from 'react';
|
||||
|
||||
export default function Providers({ children }: { children: ReactNode }) {
|
||||
return (
|
||||
<LanguageProvider>
|
||||
<TransitionWrapper>
|
||||
{children}
|
||||
</TransitionWrapper>
|
||||
</LanguageProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user