'use client' import React from 'react'; import style from './Toggle.module.scss' interface Props { label: string handleClick: () => void } const Toggle: React.FC = (props) => { const { label, handleClick } = props return (
{label}
); }; export default Toggle;