import React from 'react' import { FormControl, FormGroup, FormLabel } from 'react-bootstrap' import { setDebugFilterText } from '@/app/actions' import { useAppDispatch, useAppSelector } from '@/app/hooks' export const DebugFilter: React.FC = () => { const debugFilterText = useAppSelector((state) => state.debugFilterText) const dispatch = useAppDispatch() const onChange = (event: React.ChangeEvent): void => { dispatch(setDebugFilterText(event.target.value)) } return ( Filter: ) }