public componentDidMount()

in www/src/pages/index.tsx [12:18]


	public componentDidMount() {
		if (this._canvas && typeof window !== 'undefined') {
			import('../utils/particles').then(particles => {
				particles.init(this._canvas as HTMLCanvasElement);
			});
		}
	}