[Qwik] Use the inline component syntax for the minimal template example (#259)

This commit is contained in:
Ian Létourneau
2024-10-04 10:57:17 -04:00
committed by GitHub
parent b1f8a3cc37
commit 7ea2a348e4

View File

@@ -1,5 +1,3 @@
import { component$ } from "@builder.io/qwik";
export const HelloWorld = component$(() => {
export const HelloWorld = () => {
return <div>Hello World</div>;
});
};