perf: offload long running tasks to workers, preloading dm page data
This commit is contained in:
parent
b97fa88893
commit
ad9933903c
18 changed files with 524 additions and 297 deletions
|
@ -1,10 +1,10 @@
|
|||
import { createSignal, Show, type Component, type JSX } from "solid-js";
|
||||
import { type RouteSectionProps, useNavigate } from "@solidjs/router";
|
||||
|
||||
import { setDb, SQL } from "~/db";
|
||||
import { Portal } from "solid-js/web";
|
||||
import { Flex } from "~/components/ui/flex";
|
||||
import { Title } from "@solidjs/meta";
|
||||
import { setDb, SQL } from "~/db";
|
||||
|
||||
export const Home: Component<RouteSectionProps> = () => {
|
||||
const [isLoadingDb, setIsLoadingDb] = createSignal(false);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue