import { View } from '@tarojs/components'
import { cn } from '@/utils/cn'
interface CardProps {
className?: string
children: React.ReactNode
}
export function Card({ className, children }: CardProps) {
return (
{children}
)
}
interface CardHeaderProps {
className?: string
children: React.ReactNode
}
export function CardHeader({ className, children }: CardHeaderProps) {
return (
{children}
)
}
interface CardContentProps {
className?: string
children: React.ReactNode
}
export function CardContent({ className, children }: CardContentProps) {
return (
{children}
)
}
interface CardFooterProps {
className?: string
children: React.ReactNode
}
export function CardFooter({ className, children }: CardFooterProps) {
return (
{children}
)
}