mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2025-03-20 21:28:34 +03:00
7 lines
240 B
TypeScript
7 lines
240 B
TypeScript
|
import React, { FC } from 'react';
|
||
|
import BooleanControl, { BooleanControlProps } from './BooleanControl';
|
||
|
|
||
|
const ToggleSwitch: FC<BooleanControlProps> = (props) => <BooleanControl type="switch" {...props} />;
|
||
|
|
||
|
export default ToggleSwitch;
|