mirror of
https://github.com/danbulant/cushy
synced 2026-06-16 13:01:11 +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()
|
|
}
|