mirror of
https://github.com/langgenius/dify.git
synced 2026-07-24 04:58:32 +08:00
9 lines
207 B
TypeScript
9 lines
207 B
TypeScript
import type { ReactNode } from 'react'
|
|
import { guardAgentV2Route } from './feature-guard'
|
|
|
|
export default function Layout({ children }: { children: ReactNode }) {
|
|
guardAgentV2Route()
|
|
|
|
return children
|
|
}
|