'use client' import type { ResourceOpenScope } from '@/models/access-control' import { cn } from '@langgenius/dify-ui/cn' import { memo } from 'react' type OpenScopeOptionProps = { value: ResourceOpenScope selected: boolean disabled: boolean title: string description: string onChange?: (openScope: ResourceOpenScope) => void } function OpenScopeOption({ value, selected, disabled, title, description, onChange, }: OpenScopeOptionProps) { return ( ) } export default memo(OpenScopeOption)