steveruizok
5/7/2019 - 9:01 AM

Switch Tutorial - State

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%"/>
    )
}