import React, { useState } from "react"; import { Button, Content, Switch } from "@jobber/components-native"; import type { SwitchProps } from "@jobber/components-native"; type SwitchStoryArgs = Pick; export function SwitchControlled(props: Partial) { const [value, setValue] = useState(false); return (