From 0fc4ad93e6c386b4b764ac2d51af38fbaff93bd7 Mon Sep 17 00:00:00 2001 From: Jayden Seric Date: Mon, 2 Dec 2019 15:29:17 +1100 Subject: [PATCH] Remove unnecessary div. --- app/components/Page.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/components/Page.js b/app/components/Page.js index c26e10b..e432c06 100644 --- a/app/components/Page.js +++ b/app/components/Page.js @@ -1,10 +1,10 @@ import Head from 'next/head' export const Page = ({ title, children }) => ( -
+ <> {title} {children} -
+ )