Counselllor / Counsellor-Web

Documentation comments not found for functions and classes JS-D1001
Documentation
Minor
a day ago4 months old
Documentation comment not found for arrow function handleTouchEnd
112    setActiveIndex(index);
113  };
114
115  const handleTouchEnd = () => {116    setActiveIndex(null);
117  };
118
Documentation comment not found for arrow function handleTouchStart
108
109  const [activeIndex, setActiveIndex] = useState(null);
110
111  const handleTouchStart = (index) => {112    setActiveIndex(index);
113  };
114
Documentation comment not found for arrow function Dashboard
 15import { ThemeContext } from '../../App';
 16import { Switch } from 'antd';
 17
 18const Dashboard = () => { 19  const navigate = useNavigate();
 20  const location = useLocation();
 21  const [menuOpen, setMenuOpen] = useState(false);
Documentation comment not found for function declaration Login
 17import { Switch } from 'antd';
 18import { ThemeContext } from "../../App";
 19
 20export default function Login() { 21  const [error, setError] = useState({});
 22  const [passwordType, setPasswordType] = useState("password");
 23  const [captchaVal, setCaptchaVal] = useState("");
Documentation comment not found for arrow function handleImageUpload
 69    });
 70  };
 71
 72  const handleImageUpload = (e) => { 73    const file = e.target.files[0];
 74    const reader = new FileReader();
 75    reader.onloadend = () => {