From de74de8b0a5261375f99db864a537f95e6a29adb Mon Sep 17 00:00:00 2001 From: Patrick Alvin Alcala Date: Tue, 2 Sep 2025 12:09:08 +0800 Subject: [PATCH] HTML to JSX --- fwt/components/HTML/HTML.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fwt/components/HTML/HTML.tsx b/fwt/components/HTML/HTML.tsx index 3fd7566..6c868a3 100644 --- a/fwt/components/HTML/HTML.tsx +++ b/fwt/components/HTML/HTML.tsx @@ -1,10 +1,11 @@ import './HTML.sass' +import type { JSXElement } from 'solid-js' interface Props { title: string name: string description: string - children: HTMLElement + children: JSXElement font?: string }