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