🎨 Run prettier on all files (fix #21)

This commit is contained in:
Alexandre Mouton-Brady
2021-12-24 22:42:17 +01:00
parent d8d2c5b2af
commit ccb0d1a718
38 changed files with 136 additions and 130 deletions
+5 -5
View File
@@ -1,8 +1,8 @@
import "windi.css";
import 'windi.css';
import { render } from "solid-js/web";
import { Router } from "solid-app-router";
import App from "./app";
import { render } from 'solid-js/web';
import { Router } from 'solid-app-router';
import App from './app';
render(
() => (
@@ -10,5 +10,5 @@ render(
<App />
</Router>
),
document.getElementById("root") as HTMLElement
document.getElementById('root') as HTMLElement,
);