14 lines
284 B
JavaScript

import { Canvas } from '@react-three/fiber'
import SolarSystem from './SolarSystem'
function App() {
return (
<Canvas camera={{ position: [0, 4, 10], fov: 50 }}>
<color attach="background" args={['white']} />
<SolarSystem />
</Canvas>
)
}
export default App