mirror of
https://github.com/Steffo99/bluelib.git
synced 2024-12-22 11:34: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 {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>
|
||||
)
|
||||
}
|
Loading…
Reference in a new issue