Docker images / prepare-release (push) Successful in 6s
Docker images / backend-image (push) Successful in 1m37s
Docker images / frontend-image (push) Successful in 1m50s
Docker images / updater-image (push) Successful in 44s
Docker images / notify-webhook (push) Has been skipped
Docker images / publish-release (push) Successful in 7s
19 lines
423 B
TypeScript
19 lines
423 B
TypeScript
import type { ReactNode } from "react"
|
|
import { Card } from "@/components/ui/card"
|
|
import { cn } from "@/lib/utils"
|
|
|
|
interface DataPageCardProps {
|
|
children: ReactNode
|
|
className?: string
|
|
}
|
|
|
|
function DataPageCard({ children, className }: DataPageCardProps) {
|
|
return (
|
|
<Card className={cn("overflow-hidden py-0 gap-0", className)}>
|
|
{children}
|
|
</Card>
|
|
)
|
|
}
|
|
|
|
export { DataPageCard, type DataPageCardProps }
|