chore: format code

This commit is contained in:
GitHub Action 2025-11-19 00:53:21 +00:00 committed by Adam
parent a822b09002
commit 7aeb89dd49
No known key found for this signature in database
GPG key ID: 9CB48779AF150E75
3 changed files with 6 additions and 6 deletions

View file

@ -1,4 +1,4 @@
// @refresh reload
import { mount, StartClient } from "@solidjs/start/client";
import { mount, StartClient } from "@solidjs/start/client"
mount(() => <StartClient />, document.getElementById("app")!);
mount(() => <StartClient />, document.getElementById("app")!)

View file

@ -1,5 +1,5 @@
// @refresh reload
import { createHandler, StartServer } from "@solidjs/start/server";
import { createHandler, StartServer } from "@solidjs/start/server"
export default createHandler(() => (
<StartServer
@ -18,4 +18,4 @@ export default createHandler(() => (
</html>
)}
/>
));
))

View file

@ -1,4 +1,4 @@
import { A } from "@solidjs/router";
import { A } from "@solidjs/router"
export default function NotFound() {
return (
@ -21,5 +21,5 @@ export default function NotFound() {
</A>
</p>
</main>
);
)
}