Fix missing Subscription type in iced_web

This commit is contained in:
Héctor Ramón Jiménez 2019-12-18 23:57:02 +01:00
parent 0f2e20f5e5
commit 9ca65c9f18
5 changed files with 47 additions and 3 deletions

View file

@ -61,18 +61,22 @@ use std::{cell::RefCell, rc::Rc};
mod bus;
mod element;
mod hasher;
pub mod style;
pub mod subscription;
pub mod widget;
pub use bus::Bus;
pub use dodrio;
pub use element::Element;
pub use hasher::Hasher;
pub use iced_core::{
Align, Background, Color, Command, Font, HorizontalAlignment, Length,
VerticalAlignment,
};
pub use style::Style;
pub use subscription::Subscription;
pub use widget::*;
/// An interactive web application.