11 lines
137 B
Rust
11 lines
137 B
Rust
use relm4::SimpleComponent;
|
|
|
|
struct TestComponent;
|
|
|
|
#[relm4_macros::component]
|
|
impl SimpleComponent for TestComponent {
|
|
|
|
}
|
|
|
|
fn main() {}
|