mirror of
https://github.com/danbulant/cushy
synced 2026-05-21 13:18:48 +00:00
7 lines
145 B
Rust
7 lines
145 B
Rust
use gooey::widget::MakeWidget;
|
|
use gooey::widgets::Input;
|
|
use gooey::Run;
|
|
|
|
fn main() -> gooey::Result {
|
|
Input::new("Hello").expand().run()
|
|
}
|