1234567891011121314151617181920212223242526 |
- import React from 'react'
- import type { ReactNode } from 'react'
- import SwrInitor from '@/app/components/swr-initor'
- import { AppContextProvider } from '@/context/app-context'
- import GA, { GaType } from '@/app/components/base/ga'
- import Header from '@/app/components/header'
- const Layout = ({ children }: { children: ReactNode }) => {
- return (
- <>
- <GA gaType={GaType.admin} />
- <SwrInitor>
- <AppContextProvider>
- <Header />
- {children}
- </AppContextProvider>
- </SwrInitor>
- </>
- )
- }
- export const metadata = {
- title: 'Dify',
- }
- export default Layout
|