Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
titaniumnetwork-dev
GitHub Repository: titaniumnetwork-dev/Ludicrous
Path: blob/main/components/layout.tsx
1231 views
1
import Particles from "react-tsparticles";
2
import { loadFull } from "tsparticles";
3
4
export default function Layout({ children, particles }: any) {
5
6
const particlesInit: any = async (main: any) => {await loadFull(main)};
7
8
const particlesLoaded: any = (e: any) => {e.canvas.element.style.zIndex = '1'};
9
10
return (
11
<>
12
{particles}
13
14
<main>{children}</main>
15
</>
16
)
17
}
18