mirror of
https://github.com/plankanban/planka.git
synced 2025-07-19 13:19:44 +02:00
11 lines
257 B
JavaScript
Executable file
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;
|