From b1c8228b00c78c5626ebf54291940bd00e650da6 Mon Sep 17 00:00:00 2001 From: bhushan6 Date: Tue, 15 Aug 2023 03:51:48 +0530 Subject: [PATCH] removes unused code --- src/components/3D/InfoPanel.jsx | 24 ------------------------ src/components/3D/Shadow.jsx | 13 ------------- 2 files changed, 37 deletions(-) delete mode 100644 src/components/3D/InfoPanel.jsx delete mode 100644 src/components/3D/Shadow.jsx diff --git a/src/components/3D/InfoPanel.jsx b/src/components/3D/InfoPanel.jsx deleted file mode 100644 index bbb4bc7..0000000 --- a/src/components/3D/InfoPanel.jsx +++ /dev/null @@ -1,24 +0,0 @@ -/* eslint-disable react/no-unescaped-entities */ -/* eslint-disable no-unused-vars */ -import React from "react"; - -export const InfoPanel = () => { - return ( -
- Use panel on right top corner to customize the Lego Bricks Properties Use -
- "AWSD" to chnage the anchor points of bricks -
- ); -}; diff --git a/src/components/3D/Shadow.jsx b/src/components/3D/Shadow.jsx deleted file mode 100644 index 005dab1..0000000 --- a/src/components/3D/Shadow.jsx +++ /dev/null @@ -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 ( - - - - - ); -};