Skip to content

Instantly share code, notes, and snippets.

View nk4dev's full-sized avatar
:octocat:
make app🛠

Nknight AMAMIYA nk4dev

:octocat:
make app🛠
View GitHub Profile
import type { NextPage } from 'next'
import { useEffect } from 'react'
import * as THREE from 'three'
const Home: NextPage = () => {
let canvas: HTMLElement
useEffect(() => {
if (canvas) return
// canvasを取得
canvas = document.getElementById('canvas')!