1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-19 21:29:43 +02:00
planka/client/src/lib/custom-ui/components/Input/Input.jsx

12 lines
257 B
React
Raw Normal View History

2019-08-31 04:07:25 +05:00
import { Input as SemanticUIInput } from 'semantic-ui-react';
import InputPassword from './InputPassword';
import InputMask from './InputMask';
2019-08-31 04:07:25 +05:00
const Input = SemanticUIInput;
2019-08-31 04:07:25 +05:00
Input.Password = InputPassword;
Input.Mask = InputMask;
2019-08-31 04:07:25 +05:00
export default Input;