import variables from 'config/variables'; import { useState, memo } from 'react'; import { Checkbox, Slider } from 'components/Form/Settings'; import { Button } from 'components/Elements'; import { toast } from 'react-toastify'; import EventBus from 'utils/eventbus'; import values from 'utils/data/slider_values.json'; import { Row, Content, Action } from 'components/Layout/Settings/Item'; 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} />
setEventName(e.target.value)} spellCheck={false} />