mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-05 06:22:52 +08:00
7 lines
234 B
JavaScript
7 lines
234 B
JavaScript
|
|
import {componentExportHelper} from 'Component/Abstract';
|
|
import {AbstractInput} from 'Component/AbstractInput';
|
|
|
|
class InputComponent extends AbstractInput {}
|
|
|
|
export default componentExportHelper(InputComponent, 'InputComponent');
|