mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
d94eaa19cc
[web] Enable SSO switch on Group Settings GitOrigin-RevId: 591881eb4e6bad912de026f7a687f3b020712c2d
14 lines
308 B
TypeScript
14 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,
|
|
}
|