diff --git a/src/Routers.jsx b/src/Routers.jsx
index e73248f..f5f4593 100755
--- a/src/Routers.jsx
+++ b/src/Routers.jsx
@@ -28,6 +28,7 @@ import RemindersAddPage from './views/RemindersAddPage';
import TrackingPage from "./views/TrackingPage";
import CalendarPage from "./views/CalendarPage";
import ResourcePage from "./views/ResourcePage";
+import TrackActionPage from "./views/TrackActionPage";
export default function Routers() {
return (
@@ -67,7 +68,7 @@ export default function Routers() {
} />
} />
-
+ } />
{datas.title}
diff --git a/src/components/Tracking/TrackAction/UserRecentTracking.jsx b/src/components/Tracking/TrackAction/UserRecentTracking.jsx
new file mode 100644
index 0000000..f0b2e0b
--- /dev/null
+++ b/src/components/Tracking/TrackAction/UserRecentTracking.jsx
@@ -0,0 +1,28 @@
+import React, { useState } from "react";
+
+export default function UserRecentTracking() {
+
+
+ return (
+
+
+
+
+
+
+ Recent Records
+
+
+
+
+
+
+ SOME TABLE HERE
+
+
+
+
+
+
+ );
+}
diff --git a/src/components/Tracking/TrackAction/UserWeightWidget.jsx b/src/components/Tracking/TrackAction/UserWeightWidget.jsx
new file mode 100644
index 0000000..3736e5d
--- /dev/null
+++ b/src/components/Tracking/TrackAction/UserWeightWidget.jsx
@@ -0,0 +1,19 @@
+import React, { useState } from "react";
+import background from "../../../assets/images/shape/balance-bg.svg";
+
+export default function UserWeightWidget() {
+ const [eth] = useState(90);
+ const [btc] = useState(85);
+ const [ltc] = useState(20);
+ return (
+
+
+
+
+ );
+}
diff --git a/src/components/Tracking/TrackAction/index.jsx b/src/components/Tracking/TrackAction/index.jsx
new file mode 100644
index 0000000..e3fef09
--- /dev/null
+++ b/src/components/Tracking/TrackAction/index.jsx
@@ -0,0 +1,46 @@
+import React from "react";
+import bank1 from "../../../assets/images/bank-1.png";
+import bank2 from "../../../assets/images/bank-2.png";
+import bank3 from "../../../assets/images/bank-3.png";
+import bank4 from "../../../assets/images/bank-4.png";
+import Layout from "../../Partials/Layout";
+//import CurrencyStaticsSection from "./CurrencyStaticsSection";
+//import CurrentBalanceWidget from "./CurrentBalanceWidget";
+//import InvestmentSection from "./InvestmentSection";
+//import RecentTransactionWidget from "./RecentTransactionWidget";
+
+import UserWeightWidget from "./UserWeightWidget";
+import UserRecentTracking from "./UserRecentTracking";
+
+export default function TrackAction() {
+ return (
+ <>
+
+
+
+
+
+
+
+
+
+
+
+ Some title HERE
+
+
+
+
+ SOMETHING HERE
+
+
+
+
+
+
+
+
+
+ >
+ );
+}
diff --git a/src/views/TrackActionPage.jsx b/src/views/TrackActionPage.jsx
new file mode 100644
index 0000000..4de6742
--- /dev/null
+++ b/src/views/TrackActionPage.jsx
@@ -0,0 +1,11 @@
+import React from "react";
+import MyWallet from "../components/MyWallet";
+import TrackAction from "../components/Tracking/TrackAction";
+
+export default function TrackActionPage() {
+ return (
+ <>
+
+ >
+ );
+}