import { PerspectiveCamera } from 'three'; function createCamera() { const camera = new PerspectiveCamera(75, window.innerWidth / window.innerHeight, 0.1, 100); return camera; } export { createCamera };