1 2 3 4 5 6 7
export default function Card({children}) { return ( <div className="p-4 bg-gray-900 rounded-md"> {children} </div> ) }