import { Card } from "../webpack/common"; interface Props { style?: React.CSSProperties; className?: string; } export function ErrorCard(props: React.PropsWithChildren) { return ( {props.children} ); }