import React from "react"; import Text from "./text"; import theme from "./tema"; import Button from "./button"; export function SimpleCardContainer({ children, ...props }) { return ( ); } export function SimpleCardTitle({ children }) { return ( {children} ); }