removes unused code

This commit is contained in:
bhushan6
2023-08-15 03:51:48 +05:30
parent 3f41135b9e
commit b1c8228b00
2 changed files with 0 additions and 37 deletions
-24
View File
@@ -1,24 +0,0 @@
/* eslint-disable react/no-unescaped-entities */
/* eslint-disable no-unused-vars */
import React from "react";
export const InfoPanel = () => {
return (
<div
style={{
position: "absolute",
zIndex: "1000",
top: 0,
left: 0,
fontFamily: "sans-serif",
padding: "10px",
width: "200px",
color: "white",
}}
>
Use panel on right top corner to customize the Lego Bricks Properties Use
<br />
"AWSD" to chnage the anchor points of bricks
</div>
);
};
-13
View File
@@ -1,13 +0,0 @@
/* eslint-disable no-unused-vars */
/* eslint-disable react/prop-types */
/* eslint-disable react/no-unknown-property */
import React from "react";
export const Shadow = ({ size = 3000 }) => {
return (
<mesh receiveShadow={true} rotation={[-Math.PI / 2, 0, 0]}>
<planeGeometry args={[size, size]} />
<shadowMaterial opacity={0.2} />
</mesh>
);
};