mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2025-01-25 14:52:20 +01:00
11 lines
406 B
TypeScript
11 lines
406 B
TypeScript
/**
|
|
* This is a compatibility wrapper to allow usage of react-switch inside of the angular.js app
|
|
*/
|
|
import Switch from 'react-switch';
|
|
import { react2angular } from 'react2angular';
|
|
import { IApplication } from '../../models/application';
|
|
|
|
declare var Application: IApplication;
|
|
|
|
Application.Components.component('switch', react2angular(Switch, ['checked', 'onChange', 'id', 'className', 'disabled']));
|