rsproject/Relm4-0.6.2/relm4-macros/tests/ui/compile-fail/missing-view.rs
2024-03-02 00:19:08 +08:00

19 lines
299 B
Rust

use relm4::prelude::*;
struct App;
#[relm4_macros::component]
impl SimpleComponent for App {
type Init = ();
type Input = ();
type Output = ();
fn init(_: (), root: &Self::Root, sender: ComponentSender<Self>) -> ComponentParts<Self> {
todo!();
}
}
fn main() {
}