import { useRef, useState } from 'react' import { Button } from './Button' export interface IncomeDashboardDisclaimerProps { creatorAddress: string } export const IncomeDashboardDisclaimer = (props: IncomeDashboardDisclaimerProps) => { const [isChecked, setIsChecked] = useState(false) const checkBoxRef = useRef(null) const handleCheckBox = () => { checkBoxRef.current?.click() } return (
) }