mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-01 20:42:19 +08:00
8 lines
233 B
JavaScript
8 lines
233 B
JavaScript
|
|
||
|
import {componentExportHelper} from 'Component/Abstract';
|
||
|
import {AbstracRadio} from 'Component/AbstracRadio';
|
||
|
|
||
|
class RadioComponent extends AbstracRadio {}
|
||
|
|
||
|
module.exports = componentExportHelper(RadioComponent, 'RadioComponent');
|