Created
May 23, 2022 19:59
-
-
Save laxmariappan/682b45b678e440acd1625f919260662f to your computer and use it in GitHub Desktop.
Layout 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
export function Layout({ children }) { | |
return ( | |
<> | |
<Header /> | |
{children} | |
<Footer /> | |
</> | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment