Track Actio Pages

This commit is contained in:
2023-02-09 21:16:39 -05:00
parent b788dc0623
commit af7009955f
6 changed files with 107 additions and 2 deletions
@@ -0,0 +1,28 @@
import React, { useState } from "react";
export default function UserRecentTracking() {
return (
<div className="currency-statics w-full mb-11">
<div className="w-full bg-white dark:bg-dark-white rounded-2xl p-7">
<div className="flex flex-col justify-between h-full">
<div className="content sm:flex justify-between items-center mb-5">
<div>
<h1 className="text-xl font-bold text-dark-gray dark:text-white tracking-wide">
Recent Records
</h1>
</div>
</div>
<div className="currency-statics-chart">
SOME TABLE HERE
</div>
</div>
</div>
</div>
);
}