Created
May 23, 2022 19:57
-
-
Save laxmariappan/ea1398686b833074b09fa5f3251c7a8a to your computer and use it in GitHub Desktop.
Document for Remix Tailwind app
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Document({ children }) { | |
return ( | |
<html lang="en"> | |
<head> | |
<meta charSet="utf-8" /> | |
<meta name="viewport" content="width=device-width,initial-scale=1" /> | |
<Meta /> | |
<Links /> | |
</head> | |
<body className="bg-gray-100"> | |
{children} | |
<ScrollRestoration /> | |
<Scripts /> | |
<LiveReload /> | |
</body> | |
</html> | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment