mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-07 15:27:43 +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');
|