[web] Enable SSO switch on Group Settings GitOrigin-RevId: 591881eb4e6bad912de026f7a687f3b020712c2d
15 lines
308 B
TypeScript
15 lines
308 B
TypeScript
import Switch from '../js/shared/components/switch'
|
|
|
|
export const Unchecked = () => {
|
|
return <Switch onChange={() => {}} checked={false} />
|
|
}
|
|
|
|
export const Checked = () => {
|
|
return <Switch onChange={() => {}} checked />
|
|
}
|
|
|
|
export default {
|
|
title: 'Shared / Components / Switch',
|
|
component: Switch,
|
|
}
|