"use client"; import React from "react"; import { Switch } from "@/subframe/components/Switch"; function SwitchExample() { return <Switch checked={false} onCheckedChange={(checked: boolean) => {}} />; } export default SwitchExample;
checked
boolean
onCheckedChange
(checked: boolean) => void
Use checked and onCheckedChange props to control the switch state.
View code