dify/web/app/(education)/layout.tsx
yyh 78c7fb9c5c
refactor(web): move education verification to dedicated routes (#40493)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
2026-08-11 09:56:11 +00:00

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>
)
}