import { useSelector } from 'react-redux';
import { selectCurrentOutputUnit } from '../unit-selector/unitSelectorSlice';

export function EndingNumberOutput() {
  const currentOutputUnit = useSelector(selectCurrentOutputUnit);
  return (
    <div>
      <h1>{} {currentOutputUnit}</h1>
    </div>
  );
}