import React from "react" import { Box, BoxProps, useColorModeValue } from "@chakra-ui/react" export const Card = (props: BoxProps) => { const bg = useColorModeValue("white", "gray.780") return ( ) } export default Card