//
// import './style.css'
import React from "react";
import { Canvas } from "@react-three/fiber";
import Experience from "./Experience.jsx";
const DraggableListComponent = () => {
  return (
    <Canvas
      shadows
      camera={{
        fov: 45,
        near: 0.1,
        far: 200,
        position: [-4, 3, 6],
      }}
    >
      <Experience />
    </Canvas>
  );
};
export default DraggableListComponent;
