import React from "react"; import tw, {styled} from "twin.macro" import 'styled-components/macro' export default function Card(props) { return
{props.children}
; } export function CardHeader(props) { return
{ props.desc != null ?

{props.desc}

: ""}
{props.children}
; }