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 }