mirror of
https://github.com/langgenius/dify.git
synced 2026-09-03 23:47:16 +08:00
12 lines
374 B
TypeScript
12 lines
374 B
TypeScript
import type { ReactNode } from 'react'
|
|
import { ConsoleRuntimeProviders } from '@/app/(commonLayout)/providers'
|
|
import EducationShell from '@/app/education/education-shell'
|
|
|
|
export default function Layout({ children }: { children: ReactNode }) {
|
|
return (
|
|
<ConsoleRuntimeProviders>
|
|
<EducationShell>{children}</EducationShell>
|
|
</ConsoleRuntimeProviders>
|
|
)
|
|
}
|