muryshev's picture
init
79278ec
raw
history blame
152 Bytes
interface ToggleProps {
name: string;
checked: boolean;
setChecked: React.Dispatch<React.SetStateAction<boolean>>;
}
export default ToggleProps;