generated from Luis/nextjs-python-web-template
13 lines
361 B
TypeScript
13 lines
361 B
TypeScript
import { DashboardCard } from "@/components/card";
|
|
import { NoDataOverlay } from "@/components/noDataOverlay";
|
|
|
|
export const RecentActivity = () => {
|
|
return (
|
|
<DashboardCard title="Recent Activity">
|
|
<div className="flex w-full justify-center align-middle">
|
|
<NoDataOverlay label="No Activity yet" />
|
|
</div>
|
|
</DashboardCard>
|
|
);
|
|
};
|