snappymail/dev/Component/Input.js

8 lines
234 B
JavaScript
Raw Normal View History

2015-11-15 08:23:16 +08:00
import {componentExportHelper} from 'Component/Abstract';
import {AbstractInput} from 'Component/AbstractInput';
class InputComponent extends AbstractInput {}
2017-03-01 02:44:13 +08:00
export default componentExportHelper(InputComponent, 'InputComponent');