UNPKG

@heroui/radio

Version:

Radios allow users to select a single option from a list of mutually exclusive options.

14 lines (11 loc) 270 B
"use client"; // src/radio-group-context.ts import { createContext } from "@heroui/react-utils"; var [RadioGroupProvider, useRadioGroupContext] = createContext({ name: "RadioGroupContext", strict: false }); export { RadioGroupProvider, useRadioGroupContext };