Documentation
#![feature(once_cell)]
#![recursion_limit = "1024"]

use yew::prelude::*;

pub mod examples;
pub mod items;
pub mod pages;

pub struct Entrance {}

impl Component for Entrance {
    type Message = ();
    type Properties = ();

    fn create(_: Self::Properties, _: ComponentLink<Self>) -> Self {
        Self {}
    }

    fn update(&mut self, _: Self::Message) -> ShouldRender {
        true
    }

    fn change(&mut self, _: Self::Properties) -> ShouldRender {
        false
    }

    fn view(&self) -> Html {
        examples::Full.render()
    }
}