import React from 'react'
interface CardProps {
children: React.ReactNode
className?: string
}
export function Card({ children, className = '' }: CardProps) {
return (
{children}
)
}
export function CardHeader({ children, className = '' }: CardProps) {
return (
{children}
)
}
export function CardContent({ children, className = '' }: CardProps) {
return (
{children}
)
}
export function CardTitle({ children, className = '' }: CardProps) {
return (
{children}
)
}