diff --git a/src/components/Partials/RightSideBar.jsx b/src/components/Partials/RightSideBar.jsx index cff61f6..643fb74 100755 --- a/src/components/Partials/RightSideBar.jsx +++ b/src/components/Partials/RightSideBar.jsx @@ -15,6 +15,8 @@ import LtcIco from "../Helpers/Icons/LtcIco"; import Usdt from "../Helpers/Icons/Usdt"; import SelectBox from "../Helpers/SelectBox"; +import SideMenuSub from "../Subscriptions/SideMenuSub"; + export default function RightSideBar() { const filterDatas = ["Last 15 days", "Last Month", "Last 6 month"]; const [filterDataSet, setFilterDataSet] = useState([10, 30, 20, 40]); @@ -44,7 +46,12 @@ export default function RightSideBar() { }; return ( <> + +
+
+ +
@@ -167,7 +174,7 @@ export default function RightSideBar() {
- + {/* top-platform */}
{/* heading */} diff --git a/src/components/Subscriptions/SideMenuSub.jsx b/src/components/Subscriptions/SideMenuSub.jsx new file mode 100644 index 0000000..1963bbe --- /dev/null +++ b/src/components/Subscriptions/SideMenuSub.jsx @@ -0,0 +1,25 @@ +import React, { useState } from "react"; +import { Link } from "react-router-dom"; +import Icons from "../Helpers/Icons"; + + +export default function SideMenuSub() { + return ( + <> +
+ {/* heading */} +
+

+ Subsription +

+
+
+
+ +
+ +
+
+ + ); +}