Files
Dwinzo_dev/app/src/components/layout/3D-cards/CardsScene.tsx

26 lines
749 B
TypeScript
Raw Normal View History

2025-03-25 11:47:41 +05:30
import { Canvas } from "@react-three/fiber";
import Throughput from "./cards/Throughput";
import ReturnOfInvestment from "./cards/ReturnOfInvestment";
import ProductionCapacity from "./cards/ProductionCapacity";
import { OrbitControls } from "@react-three/drei";
import StateWorking from "./cards/StateWorking";
const CardsScene = () => {
return (
<div className="cards-scene" style={{ width: "100%", height: "100%" }}>
2025-04-03 19:31:25 +05:30
{/* <Canvas> */}
2025-03-25 11:47:41 +05:30
{/* 3d-cards */}
{/* <ProductionCapacity /> */}
{/* <ReturnOfInvestment /> */}
2025-03-25 11:47:41 +05:30
{/* <StateWorking /> */}
{/* <Throughput /> */}
2025-03-25 11:47:41 +05:30
2025-04-03 19:31:25 +05:30
{/* <OrbitControls /> */}
{/* </Canvas> */}
2025-03-25 11:47:41 +05:30
</div>
);
};
export default CardsScene;