mirror of
https://github.com/RainLoop/rainloop-webmail.git
synced 2026-02-01 11:34:25 +01:00
7 lines
237 B
JavaScript
7 lines
237 B
JavaScript
import { componentExportHelper } from 'Component/Abstract';
|
|
import { AbstractInput } from 'Component/AbstractInput';
|
|
|
|
class InputComponent extends AbstractInput {}
|
|
|
|
export default componentExportHelper(InputComponent, 'InputComponent');
|