Add styling and sass plugin

This commit is contained in:
2020-09-18 08:45:21 -05:00
parent bc4f834cae
commit 8de94aa769
18 changed files with 16881 additions and 3 deletions

11
src/components/layout.js Normal file
View File

@@ -0,0 +1,11 @@
import React from "react";
import Header from './header';
export default function Layout({ children }) {
return (
<body>
<Header />
{children}
</body>
);
}