generated from Luis/nextjs-python-web-template
add: some util to dashboard
This commit is contained in:
12
pkgs/ui/src/components/dashboard/activity/index.tsx
Normal file
12
pkgs/ui/src/components/dashboard/activity/index.tsx
Normal file
@@ -0,0 +1,12 @@
|
||||
import { DashboardCard } from "@/components/card";
|
||||
import { NoDataOverlay } from "@/components/noDataOverlay";
|
||||
|
||||
export const RecentActivity = () => {
|
||||
return (
|
||||
<DashboardCard title="Recent Activity">
|
||||
<div className="flex h-full w-full justify-center align-middle">
|
||||
<NoDataOverlay label="No Activity yet" />
|
||||
</div>
|
||||
</DashboardCard>
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user