UNPKG

fapiao

Version:

a simple fapiao react component

10 lines (9 loc) 262 B
import React from "react"; interface RadioGroupProps { name?: string; value?: any; onChange?: (value: any) => void; children?: React.ReactNode; } export declare const RadioGroup: (props: RadioGroupProps) => React.JSX.Element; export {};