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