mirror of
https://github.com/langgenius/dify.git
synced 2026-08-31 04:53:19 +08:00
6 lines
146 B
TypeScript
6 lines
146 B
TypeScript
import type { PropsWithChildren } from 'react'
|
|
|
|
export default function IntegrationsLayout({ children }: PropsWithChildren) {
|
|
return children
|
|
}
|