dutylog/src/components/starter/infobox/infobox.tsx

14 lines
263 B
TypeScript

import { Slot, component$ } from "@builder.io/qwik";
import styles from "./infobox.module.css";
export default component$(() => {
return (
<div class={styles.infobox}>
<h3>
<Slot name="title" />
</h3>
<Slot />
</div>
);
});