Skip to content

Instantly share code, notes, and snippets.

@Yoru14
Yoru14 / Particles.jsx
Created November 2, 2025 09:55
React OGL Particle Component
// Particles.jsx
import { useEffect, useRef } from 'react';
import { Renderer, Camera, Geometry, Program, Mesh } from 'ogl';
// CSS inline agar tidak perlu file terpisah
const containerStyle = {
position: 'relative',
width: '100%',
height: '100%',
};