mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-02-23 22:36:01 +08:00
8 lines
236 B
JavaScript
8 lines
236 B
JavaScript
|
|
||
|
import {componentExportHelper} from 'Component/Abstract';
|
||
|
import {AbstractInput} from 'Component/AbstractInput';
|
||
|
|
||
|
class InputComponent extends AbstractInput {}
|
||
|
|
||
|
module.exports = componentExportHelper(InputComponent, 'InputComponent');
|