feat: use official wasm in worker and cached data info / warning
This commit is contained in:
parent
36ff7afa4a
commit
851f19e82e
21 changed files with 492 additions and 398 deletions
8
src/components/ui/A.tsx
Normal file
8
src/components/ui/A.tsx
Normal 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} />;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue