remove unused code

This commit is contained in:
cupcakearmy 2019-03-06 00:17:11 +01:00
parent 51c6b1b461
commit 80dd00b449

View File

@ -1,9 +1,5 @@
import { useEffect, useState } from 'react'
const getSize = () => {
const { innerHeight, innerWidth, outerHeight, outerWidth } = window
return { innerHeight, innerWidth, outerHeight, outerWidth }
}
export const useIsMousePresent = () => {
let [present, setPresent] = useState<boolean>(false)