mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 10:25:42 +01:00
14 lines
252 B
Text
14 lines
252 B
Text
import material/material;
|
|
|
|
export {
|
|
demoMakeHelloWorld(onClose : () -> void) -> Material;
|
|
}
|
|
|
|
demoMakeHelloWorld(onClose : () -> void) -> Material {
|
|
MCenter(
|
|
MLines2(
|
|
MText("Hello, world!", []),
|
|
MTextButton("CLOSE", onClose, [], [])
|
|
)
|
|
);
|
|
}
|