/* @refresh reload */ import { type Component } from "solid-js"; import { Link } from "./link"; const Card: Component = ( { children, className, title, to, newTab = false }) => (

{ title }

{ children }
); export default Card;