mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-14 11:44:54 +08:00
6 lines
237 B
JavaScript
6 lines
237 B
JavaScript
import { componentExportHelper } from 'Component/Abstract';
|
|
import { AbstractInput } from 'Component/AbstractInput';
|
|
|
|
class InputComponent extends AbstractInput {}
|
|
|
|
export default componentExportHelper(InputComponent, 'InputComponent');
|