mirror of
https://github.com/Steffo99/bluelib.git
synced 2024-12-23 12:04:22 +00:00
11 lines
189 B
TypeScript
11 lines
189 B
TypeScript
|
import * as React from "react"
|
||
|
import * as ReactDOM from "react-dom"
|
||
|
|
||
|
export default function Preview() {
|
||
|
return <>
|
||
|
<div>
|
||
|
This should work.
|
||
|
</div>
|
||
|
</>
|
||
|
}
|