mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-09 17:37:02 +03: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');
|