dify/web/app/components/base/radio/context/index.tsx

7 lines
152 B
TypeScript
Raw Normal View History

2023-05-15 08:51:32 +08:00
'use client'
import { createContext } from 'use-context-selector'
const RadioGroupContext = createContext<any>(null)
export default RadioGroupContext