UNPKG

@gechiui/components

Version:
12 lines (9 loc) 191 B
/** * GeChiUI dependencies */ import { createContext } from '@gechiui/element'; const RadioContext = createContext( { state: null, setState: () => {}, } ); export default RadioContext;