drei
drei Box
import React from "react";
import { Canvas } from "@react-three/fiber";
export const BoxStory = () => (
<Canvas>
<mesh>
<boxGeometry />
</mesh>
</Canvas>
);
👇
import React from "react";
import { Canvas } from "@react-three/fiber";
import { Box } from "@react-three/drei";
export const Box = () => (
<Canvas>
<Box />
</Canvas>
);