From ce996a08ff8ce4083fb8ea584bc3b7cd2880a1e9 Mon Sep 17 00:00:00 2001 From: zojgame Date: Tue, 9 Apr 2024 13:28:43 +0500 Subject: [PATCH] fix distance circle --- src/components/DistanceCircle.tsx | 99 +++++++++++++++++++++++-------- src/components/Marks.tsx | 42 ------------- 2 files changed, 73 insertions(+), 68 deletions(-) delete mode 100644 src/components/Marks.tsx diff --git a/src/components/DistanceCircle.tsx b/src/components/DistanceCircle.tsx index 8943950..0a53f4e 100644 --- a/src/components/DistanceCircle.tsx +++ b/src/components/DistanceCircle.tsx @@ -5,37 +5,84 @@ interface DistanceCircleProps { const DistanceCircle = ({ selectedRange }: DistanceCircleProps) => { return ( - - - - - - - - + + + + + + + + + + ); }; +// const DistanceCircle = ({ selectedRange }: DistanceCircleProps) => { +// return ( +// +// +// +// +// +// +// +// +// +// +// ); +// }; + export default DistanceCircle; diff --git a/src/components/Marks.tsx b/src/components/Marks.tsx deleted file mode 100644 index 0915175..0000000 --- a/src/components/Marks.tsx +++ /dev/null @@ -1,42 +0,0 @@ -const Marks = () => { - return ( -
- - - - - - - - - - - -
- ); -}; - -export default Marks;