[add]: tailwind-css

This commit is contained in:
rahuldkjain
2020-09-04 15:54:39 +05:30
parent d96cde5132
commit 1f03dca892
20 changed files with 1352 additions and 826 deletions
+21
View File
@@ -0,0 +1,21 @@
import React from "react";
import Header from "./header";
import Footer from "./footer";
const Layout = ({children}) => {
return (
<div className="flex flex-col min-h-screen">
<header>
<Header heading="GitHub Profile README Generator" />
</header>
<main className="flex-grow">
{children}
</main>
<footer>
<Footer />
</footer>
</div>
)
};
export default Layout;