From 6e77866c4c850af66ab9d451b3396c54a4f42589 Mon Sep 17 00:00:00 2001 From: Patrick Alvin Alcala Date: Fri, 21 Nov 2025 18:56:46 +0800 Subject: [PATCH] Corrected imports --- src/app.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app.tsx b/src/app.tsx index f9a346d..2e90554 100644 --- a/src/app.tsx +++ b/src/app.tsx @@ -1,4 +1,5 @@ -import { Suspense, type Component } from 'solid-js' +import type { Component } from 'solid-js/types/render/component.js' +import { Suspense } from 'solid-js/web' const App: Component<{ children: Element }> = (props) => { return (