From b6b1bc027fe95dc235b656fb4a126d3f42bba209 Mon Sep 17 00:00:00 2001 From: Dan Abramov Date: Thu, 2 Feb 2023 17:24:00 +0000 Subject: [PATCH] prepare --- beta/src/components/Layout/HomeContent.js | 32 ++++++++++++++--------- 1 file changed, 19 insertions(+), 13 deletions(-) diff --git a/beta/src/components/Layout/HomeContent.js b/beta/src/components/Layout/HomeContent.js index e421332c6..fce6a1f11 100644 --- a/beta/src/components/Layout/HomeContent.js +++ b/beta/src/components/Layout/HomeContent.js @@ -629,19 +629,21 @@ async function Post({ id }) {
- - - - - + + + + + + +
); @@ -680,6 +682,10 @@ function PostPage(props) { ); } +function BrowserChrome({children}) { + return
{children}
; +} + function PageLayout({children}) { // TODO: add some layout here return
{children}
;