feat: use official wasm in worker and cached data info / warning

This commit is contained in:
Samuel 2025-01-21 20:18:39 +01:00
parent 36ff7afa4a
commit 851f19e82e
21 changed files with 492 additions and 398 deletions

8
src/components/ui/A.tsx Normal file
View file

@ -0,0 +1,8 @@
import { splitProps, type Component } from "solid-js";
import { type AnchorProps, A as BaseA } from "@solidjs/router";
import clsx from "clsx";
export const A: Component<AnchorProps> = (props) => {
const [local, other] = splitProps(props, ["class"]);
return <BaseA class={clsx("text-primary", local.class)} {...other} />;
};