mirror of
https://github.com/langgenius/dify.git
synced 2026-07-25 21:48:30 +08:00
14 lines
371 B
TypeScript
14 lines
371 B
TypeScript
'use client'
|
|
|
|
import { AccessChannelsSection } from './channels/section'
|
|
import { AccessPermissionsSection } from './permissions/section'
|
|
|
|
export function DeploymentAccess() {
|
|
return (
|
|
<div className="flex w-full max-w-[960px] min-w-0 flex-col gap-y-4 px-6 py-6 sm:px-20 sm:py-8">
|
|
<AccessChannelsSection />
|
|
<AccessPermissionsSection />
|
|
</div>
|
|
)
|
|
}
|