Add styling and sass plugin
This commit is contained in:
11
src/components/layout.js
Normal file
11
src/components/layout.js
Normal file
@@ -0,0 +1,11 @@
|
||||
import React from "react";
|
||||
import Header from './header';
|
||||
|
||||
export default function Layout({ children }) {
|
||||
return (
|
||||
<body>
|
||||
<Header />
|
||||
{children}
|
||||
</body>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user