Python: Add support for exporting multiple components

This commit is contained in:
Simon Hausmann 2024-07-02 09:23:34 +02:00 committed by Simon Hausmann
parent a3435d218f
commit 0c7d2062a5
10 changed files with 76 additions and 51 deletions

View file

@ -9,7 +9,7 @@ export global MyGlobal {
}
}
export component App {
export component App inherits Window {
in-out property <string> hello: "World";
callback say-hello(string) -> string;
callback say_hello_again(string) -> string;
@ -37,3 +37,5 @@ export component App {
color: red;
}
}
export component Diag inherits Window { }