diff --git a/components/Layout.js b/components/Layout.js index 5bd221c..0ff656d 100644 --- a/components/Layout.js +++ b/components/Layout.js @@ -1,10 +1,10 @@ -import { Fragment } from 'react'; +import React from 'react'; import Head from 'next/head'; import Header from './Header'; export default function Layout(props) { return ( - + <> @@ -14,6 +14,6 @@ export default function Layout(props) {
{props.children}
-
+ ); }