mirror of
https://github.com/langgenius/dify.git
synced 2026-07-23 20:18:40 +08:00
10 lines
339 B
TypeScript
10 lines
339 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>
|
|
}
|