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

{ title }

{ children }
); }; export default Card;