1
Fork 0
mirror of https://github.com/Steffo99/bluelib.git synced 2024-12-22 19:44:21 +00:00

🔧 Change slightly the preview

This commit is contained in:
Steffo 2021-08-24 16:05:37 +02:00
parent 856380e98d
commit bffadb3c79
Signed by: steffo
GPG key ID: 6965406171929D01

View file

@ -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 <>
<Bluelib theme={"hacker"} color={Colors.BuiltinColor.LIME} style={{minHeight: "100vh"}}>
This should work.
</Bluelib>
</>
export function Preview({...props}): JSX.Element {
return (
<span>Nothing to render here.</span>
)
}