mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-11 01:23:43 +08:00
29 lines
440 B
JavaScript
29 lines
440 B
JavaScript
|
|
(function () {
|
|
|
|
'use strict';
|
|
|
|
var
|
|
_ = require('_'),
|
|
|
|
AbstracRadio = require('Component/AbstracRadio')
|
|
;
|
|
|
|
/**
|
|
* @constructor
|
|
*
|
|
* @param {Object} oParams
|
|
*
|
|
* @extends AbstracRadio
|
|
*/
|
|
function RadioComponent(oParams)
|
|
{
|
|
AbstracRadio.call(this, oParams);
|
|
}
|
|
|
|
_.extend(RadioComponent.prototype, AbstracRadio.prototype);
|
|
|
|
module.exports = AbstracRadio.componentExportHelper(
|
|
RadioComponent, 'RadioComponent');
|
|
|
|
}());
|