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:
parent
856380e98d
commit
bffadb3c79
1 changed files with 9 additions and 7 deletions
|
@ -2,11 +2,13 @@ import * as React from "react"
|
||||||
import * as ReactDOM from "react-dom"
|
import * as ReactDOM from "react-dom"
|
||||||
import {Bluelib} from "./components/Bluelib";
|
import {Bluelib} from "./components/Bluelib";
|
||||||
import * as Colors from "./utils/Colors"
|
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 <>
|
export function Preview({...props}): JSX.Element {
|
||||||
<Bluelib theme={"hacker"} color={Colors.BuiltinColor.LIME} style={{minHeight: "100vh"}}>
|
return (
|
||||||
This should work.
|
<span>Nothing to render here.</span>
|
||||||
</Bluelib>
|
)
|
||||||
</>
|
}
|
||||||
}
|
|
Loading…
Reference in a new issue