2023-05-16 13:42:46 +03:00

7 lines
170 B
TypeScript

import type { SwitchProps } from 'antd';
import { Switch as AntdSwitch } from 'antd';
export function Switch(props: SwitchProps) {
return <AntdSwitch {...props} />;
}