#[app]
Re-export proc macros. Marks a function as a RustView application entry point.
The function must accept &mut Ui as its only parameter.
&mut Ui
#[rustview::app] fn my_app(ui: &mut Ui) { ui.write("Hello, world!"); }