Cosmetics

This commit is contained in:
Eric van der Vlist 2022-09-22 23:22:20 +02:00
parent 3856e4b516
commit 3af532de54
3 changed files with 7 additions and 8 deletions

View File

@ -1,4 +1,8 @@
import React, { Fragment } from 'react';
import React
from 'react';
import { useSelector } from 'react-redux';

View File

@ -1,6 +1,6 @@
import React, { Fragment } from 'react';
import React from 'react';
import { useSelector } from 'react-redux';
import { MapState, zoom0 } from '../../store/map';
import { MapState } from '../../store/map';
interface WhiteboardProps {
children?: any;

View File

@ -1,7 +1,6 @@
import react, { useState } from 'react';
import { useDispatch } from 'react-redux';
import _ from 'lodash';
import { mapActions } from '../../store/map';
@ -14,10 +13,6 @@ const WheelHandler: react.FC<WheelHandlerProps> = (
) => {
const dispatch = useDispatch();
interface WheelState {
timestamp: number;
}
const initialWheelState = {
timestamp: 0,
};