mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-16 04:34:42 +08:00
7 lines
236 B
JavaScript
7 lines
236 B
JavaScript
|
|
import {componentExportHelper} from 'Component/Abstract';
|
|
import {AbstractInput} from 'Component/AbstractInput';
|
|
|
|
class InputComponent extends AbstractInput {}
|
|
|
|
module.exports = componentExportHelper(InputComponent, 'InputComponent');
|