mirror of
https://github.com/Steffo99/bluelib.git
synced 2024-12-22 19:44:21 +00:00
12 lines
363 B
TypeScript
12 lines
363 B
TypeScript
import * as React from "react"
|
|
import * as ReactDOM from "react-dom"
|
|
import {Bluelib} from "./components/Bluelib";
|
|
import * as Colors from "./utils/Colors"
|
|
|
|
export default function Preview() {
|
|
return <>
|
|
<Bluelib theme={"hacker"} color={Colors.BuiltinColor.LIME} style={{minHeight: "100vh"}}>
|
|
This should work.
|
|
</Bluelib>
|
|
</>
|
|
}
|