web.lib.components.info-picker.no-code-select.tsx Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of code-quarkus Show documentation
Show all versions of code-quarkus Show documentation
Customize a Web Interface to generate Quarkus starter projects.
import * as React from 'react';
import { InputProps } from '../../core/types';
import { useAnalyticsEditionField } from '../../core/analytics';
import { Form, OverlayTrigger, Tooltip } from 'react-bootstrap';
export const NoCodeSelect = (props: InputProps) => {
const onChangeWithDirty = useAnalyticsEditionField('no-code', props.onChange)[1];
const adaptedOnChange = (e: any) => {
onChangeWithDirty(!e.currentTarget.checked);
};
const Overlay = (
Decide whether to include the starter code provided by extensions or get an empty Quarkus project.
);
return (
);
};
© 2015 - 2025 Weber Informatics LLC | Privacy Policy