Initial commit

This commit is contained in:
Thomas Gideon 2020-05-28 14:09:25 -04:00
commit 96b6152d7b
20 changed files with 914 additions and 0 deletions

37
src/container.rs Normal file
View file

@ -0,0 +1,37 @@
use crate::prelude::*;
use yew::{html::Children, prelude::*};
pub struct Container {
props: Props,
}
#[derive(Properties, Clone, PartialEq)]
pub struct Props {
#[prop_or_default]
pub children: Children,
}
impl Component for Container {
type Properties = Props;
type Message = ();
fn create(props: Self::Properties, _: ComponentLink<Self>) -> Self {
Self { props }
}
fn update(&mut self, _: Self::Message) -> ShouldRender {
false
}
fn change(&mut self, props: Self::Properties) -> ShouldRender {
render_on_change(&mut self.props, props)
}
fn view(&self) -> Html {
html! {
<div class="container">
{ self.props.children.render() }
</div>
}
}
}