All Downloads are FREE. Search and download functionalities are using the official Maven repository.

web.lib.components.info-picker.no-code-select.tsx Maven / Gradle / Ivy

There is a newer version: 37
Show newest version
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