1
Fork 0
mirror of https://github.com/Steffo99/bluelib.git synced 2024-12-23 03:54:21 +00:00
bluelib/src/Preview.tsx

13 lines
363 B
TypeScript
Raw Normal View History

2021-08-14 15:02:47 +00:00
import * as React from "react"
import * as ReactDOM from "react-dom"
2021-08-16 17:10:23 +00:00
import {Bluelib} from "./components/Bluelib";
import * as Colors from "./utils/Colors"
2021-08-14 15:02:47 +00:00
export default function Preview() {
return <>
2021-08-16 17:10:23 +00:00
<Bluelib theme={"hacker"} color={Colors.BuiltinColor.LIME} style={{minHeight: "100vh"}}>
2021-08-14 15:02:47 +00:00
This should work.
2021-08-16 17:10:23 +00:00
</Bluelib>
2021-08-14 15:02:47 +00:00
</>
}