@dark-engine/platform-desktop
Version:
Dark renderer to desktop platforms like Windows, Linux, macOS via Nodegui and Qt
10 lines (9 loc) • 365 B
JavaScript
import { QRadioButton } from '@nodegui/nodegui';
import { component } from '@dark-engine/core';
import { qRadioButton } from '../factory';
const RadioButton = component(props => qRadioButton(props), {
displayName: 'RadioButton',
});
class QDarkRadioButton extends QRadioButton {}
export { RadioButton, QDarkRadioButton };
//# sourceMappingURL=radio-button.js.map