HTML to JSX

This commit is contained in:
Patrick Alvin Alcala 2025-09-02 12:09:08 +08:00
parent a59a1c4fc4
commit de74de8b0a

View file

@ -1,10 +1,11 @@
import './HTML.sass' import './HTML.sass'
import type { JSXElement } from 'solid-js'
interface Props { interface Props {
title: string title: string
name: string name: string
description: string description: string
children: HTMLElement children: JSXElement
font?: string font?: string
} }