Skip to content

Instantly share code, notes, and snippets.

@laxmariappan
Created May 23, 2022 19:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save laxmariappan/682b45b678e440acd1625f919260662f to your computer and use it in GitHub Desktop.
Save laxmariappan/682b45b678e440acd1625f919260662f to your computer and use it in GitHub Desktop.
Layout for Remix Tailwind app
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