mirror of
https://github.com/danbulant/cushy
synced 2026-05-24 12:28:23 +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()
|
|
}
|