import { BlockTitle } from 'features/MatchPopup/styled' import { T9n } from 'features/T9n' import { Wrapper, InputsWrapper, Input, Label, } from './styled' import type { Props } from './hooks' import { useInputHandlers } from './hooks' export const EpisodeDurationInputs = (props: Props) => { const { duration, handleBlur, handleChange, } = useInputHandlers(props) return ( ) }