29 lines
740 B
React
29 lines
740 B
React
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>
|
|
);
|
|
}
|