import { ReactNode } from "react";

interface Props{
  children: ReactNode;
  containerClassName?: string;
}

export default function Card(props: Props) {
  return (
    <div className={`bg-white p-4 w-full rounded-md shadow-2xl ${props.containerClassName ?? ""}`}>
      {props.children}
    </div>
  )
}