1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-19 13:19:44 +02:00
planka/client/src/lib/custom-ui/components/Input/Input.jsx
2019-11-15 03:45:59 +05:00

11 lines
257 B
JavaScript
Executable file

import { Input as SemanticUIInput } from 'semantic-ui-react';
import InputPassword from './InputPassword';
import InputMask from './InputMask';
const Input = SemanticUIInput;
Input.Password = InputPassword;
Input.Mask = InputMask;
export default Input;