mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-01-25 02:08:11 +00:00
13 lines
242 B
TypeScript
13 lines
242 B
TypeScript
import { Spacer } from "@nextui-org/react";
|
|
|
|
import { Header } from "@/components/ui";
|
|
|
|
export default async function Workloads() {
|
|
return (
|
|
<>
|
|
<Header title="Workloads" icon="lucide:tags" />
|
|
<Spacer y={4} />
|
|
</>
|
|
);
|
|
}
|