mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-05-15 18:58:17 +08:00
7 lines
152 B
TypeScript
7 lines
152 B
TypeScript
'use client'
|
|
|
|
import { createContext } from 'use-context-selector'
|
|
|
|
const RadioGroupContext = createContext<any>(null)
|
|
export default RadioGroupContext
|