16 lines
403 B
JavaScript

import { Canvas } from '@react-three/fiber'
import Box from './components/Box'
function App() {
return (
<div style={{ width: '100vw', height: '100vh', background: 'white' }}>
<Canvas camera={{ position: [0, 0, 5]}}>
<ambientLight intensity={0.5} />
<pointLight position={[10, 10, 10]} intensity={1.5} />
<Box />
</Canvas>
</div>
)
}
export default App;