import * as THREE from 'three'; import { useToggleView } from '../../../store/store'; import * as CONSTANTS from '../../../types/world/worldConstants'; const Ground = ({ grid, plane }: any) => { const { toggleView, setToggleView } = useToggleView(); return ( ) } export default Ground;