import React from "react"; import { Card, type CardRootProps, cn } from "heroui-native"; export interface NCardProps extends CardRootProps {} export const NCard = React.memo(({ children, className, ...props }) => { return ( {children} ); }); NCard.displayName = "NCard";