import { useToggleView } from '../../../store/store'; import * as CONSTANTS from '../../../types/world/worldConstants'; const Ground = ({ grid, plane }: any) => { const { toggleView } = useToggleView(); const savedTheme: string | null = localStorage.getItem('theme'); return ( ) } export default Ground;