ยฉ 2026 Hedgehog Software, LLC
createResource
import { getTestEndpoint } from "../../utils/networkFunctions"; export const TestError = () => { onMount(() => { const runAsync = async () => { await getTestEndpoint(); }; runAsync(); }); return <h1>Test Error</h1>; };