Frontend/src/app/components/card.tsx
Liam 46384ed26e
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 1m13s
add mojang endpoint status page
2024-04-16 22:50:42 +01:00

12 lines
261 B
TypeScript

import { cn } from "@/common/utils";
export function Card({
children,
className,
}: Readonly<{
children: React.ReactNode;
className?: string;
}>): JSX.Element {
return <div className={cn("bg-secondary rounded-lg p-3", className)}>{children}</div>;
}