docs: setup format/lint

This commit is contained in:
MapleLeaf
2021-12-29 13:32:47 -06:00
parent 38c5c74bc2
commit 3eae868f4e
9 changed files with 100 additions and 95 deletions

View File

@@ -4,13 +4,13 @@ import {
Meta,
Outlet,
Scripts,
ScrollRestoration
} from "remix";
import type { MetaFunction } from "remix";
ScrollRestoration,
} from "remix"
import type { MetaFunction } from "remix"
export const meta: MetaFunction = () => {
return { title: "New Remix App" };
};
return { title: "New Remix App" }
}
export default function App() {
return (
@@ -28,5 +28,5 @@ export default function App() {
{process.env.NODE_ENV === "development" && <LiveReload />}
</body>
</html>
);
)
}