use yew::prelude::*;
const SLOT: &str = "title";
#[derive(Properties, Clone)]
pub struct TopAppBarTitleProps {
pub children: Children,
}
pub struct TopAppBarTitle {
props: TopAppBarTitleProps,
}
impl Component for TopAppBarTitle {
type Message = ();
type Properties = TopAppBarTitleProps;
fn create(props: Self::Properties, _: ComponentLink<Self>) -> Self {
Self { props }
}
fn update(&mut self, _msg: Self::Message) -> bool {
false
}
fn change(&mut self, props: Self::Properties) -> bool {
self.props = props;
true
}
fn view(&self) -> Html {
unimplemented!()
}
}