Machine Coding Questions For Frontend Interview
Create a toggle button in React JS
import React, { useState } from 'react';
const ToggleButton = () => {
const [isToggled, setToggled] = useState(false);
const handleToggle = () => {
setToggled(!isToggled);
};
return (
<di...
ayush77.hashnode.dev3 min read