From bffadb3c792c11b355aedc6bf7048457f560d3ee Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Tue, 24 Aug 2021 16:05:37 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Change=20slightly=20the=20previe?= =?UTF-8?q?w?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Preview.tsx | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/src/Preview.tsx b/src/Preview.tsx index 507420b..07e668e 100644 --- a/src/Preview.tsx +++ b/src/Preview.tsx @@ -2,11 +2,13 @@ import * as React from "react" import * as ReactDOM from "react-dom" import {Bluelib} from "./components/Bluelib"; import * as Colors from "./utils/Colors" +import {Chapter} from "./components/chapters/Chapter"; +import {Heading} from "./components/common/Heading"; +import {Panel} from "./components/panels/Panel"; -export default function Preview() { - return <> - - This should work. - - -} + +export function Preview({...props}): JSX.Element { + return ( + Nothing to render here. + ) +} \ No newline at end of file