hextastudio/ui needs your support to stay running 🫶 Help us
Bento Grid
Bento Grid layout with stunning components and customization options.
Preview
Customization
Customize any components with your own style seamlessly!
Guess the correct OTP
-
Stunning Components
Copy and Paste Modern components without any efforts.
Your project, Your code
The components added to working directory, instead of node_modules.
Complete Code
tsx
export const BentoGrid = () => {
const canvasRef = useRef(null!);
const [isEnabled, setIsEnabled] = useState(false);
const [showToast, setShowToast] = useState(false);
const [otpValue, setOtpValue] = useState("");
const toggleToast = () => {
setShowToast(!showToast);
setTimeout(() => {
setShowToast(false);