import variables from 'config/variables'; import { useState, memo } from 'react'; import { Checkbox, Slider } from 'components/Form/Settings'; import { Button } from 'components/Elements'; import { TextField } from '@mui/material'; import EventBus from 'utils/eventbus'; import values from 'utils/data/slider_values.json'; import { Row, Content, Action } from 'components/Layout/Settings/Item/SettingsItem'; function ExperimentalOptions() { const [eventType, setEventType] = useState(); const [eventName, setEventName] = useState(); return ( <> {variables.getMessage('modals.main.settings.sections.experimental.title')} {variables.getMessage('modals.main.settings.sections.experimental.warning')}

Send Event

setEventType(e.target.value)} spellCheck={false} varient="outlined" InputLabelProps={{ shrink: true }} /> setEventName(e.target.value)} spellCheck={false} varient="outlined" InputLabelProps={{ shrink: true }} />