Switch Tutorial - State
import * as React from "react" import { Frame } from "framer" export function Switch(props) { const [state, setState] = React.useState({ isOn: false, }) return ( <Frame size="100%"/> ) }