forum/src/App.jsx

17 lines
503 B
JavaScript

import './style.scss'
import { Canvas } from '@react-three/fiber';
import ChatBubble from './components/chatbubble';
function App() {
return (
<Canvas>
<ambientLight intensity={Math.PI / 2} />
<spotLight position={[10, 10, 10]} angle={0.15} penumbra={1} decay={0} intensity={Math.PI} />
<pointLight position={[-10, -10, -10]} decay={0} intensity={Math.PI} />
<ChatBubble position={[0, 0, 0]} />
</Canvas>
)
}
export default App;