mirror of
https://github.com/langgenius/dify.git
synced 2026-07-25 21:48:30 +08:00
16 lines
363 B
TypeScript
16 lines
363 B
TypeScript
'use client'
|
|
|
|
import type { ReactNode } from 'react'
|
|
import { ScopeProvider } from 'jotai-scope'
|
|
import { createDeploymentGuideScopedAtoms } from './scoped'
|
|
|
|
export function CreateDeploymentGuideProvider({ children }: {
|
|
children: ReactNode
|
|
}) {
|
|
return (
|
|
<ScopeProvider atoms={createDeploymentGuideScopedAtoms}>
|
|
{children}
|
|
</ScopeProvider>
|
|
)
|
|
}
|