rs-virtual_view

a virtual view in rust

```rust extern crate messenger; extern crate serde_json; extern crate tokio;

[macro_use]

extern crate virtual_view;

use messenger::unboundedchannel; use tokio::executor::currentthread; use virtual_view::{Children, Component, EventManager, Instance, Prop, Props, Renderer, Updater, View};

struct Button;

impl Component for Button { fn name(&self) -> &'static str { "Button" } fn render(&self, _: &Instance, props: &Props, children: &Children) -> View { view! {