@ducor/react
Version:
admin template ui interface
14 lines (13 loc) • 315 B
TypeScript
import React from "react";
interface RadioGroupOption {
label: string;
value: string;
}
interface RadioGroupProps {
options: RadioGroupOption[];
name: string;
value: string;
onChange: (value: string) => void;
}
declare const RadioGroup: React.FC<RadioGroupProps>;
export default RadioGroup;