7 lines
170 B
TypeScript
7 lines
170 B
TypeScript
import type { SwitchProps } from 'antd';
|
|
import { Switch as AntdSwitch } from 'antd';
|
|
|
|
export function Switch(props: SwitchProps) {
|
|
return <AntdSwitch {...props} />;
|
|
}
|