setup tailwind + lint and format from root

This commit is contained in:
MapleLeaf
2021-12-29 15:10:54 -06:00
parent 1b4cedd857
commit 5e88509973
15 changed files with 301 additions and 138 deletions

View File

@@ -1,3 +1,4 @@
import type { MetaFunction, LinksFunction } from "remix"
import {
Links,
LiveReload,
@@ -6,12 +7,16 @@ import {
Scripts,
ScrollRestoration,
} from "remix"
import type { MetaFunction } from "remix"
import tailwindCss from "./tailwind.css"
export const meta: MetaFunction = () => {
return { title: "New Remix App" }
}
export const links: LinksFunction = () => [
{ rel: "stylesheet", href: tailwindCss },
]
export default function App() {
return (
<html lang="en">