1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
//! # Calling Elvis
//!
//! 
//! [](https://crates.io/crates/elvis)
//! [](https://docs.rs/elvis/)
//! [](https://crates.io/crates/elvis)
//! [](https://discord.gg/dxpefwy)
//! [](https://choosealicense.com/licenses/mit/)
//!
//! Is anybody home?
//!
//! [The Evlis Book][1] mainly talks about the usage of [elvis][2], here is our [roadmap][roadmap], come and [join][community] us !~
//!
//!
//! ## Getting Started
//!
//! ```text
//! # Install elvis package manager
//! $ cargo install epm
//!
//! # New your awesome-app
//! $ epm new my-awesome-app
//!
//! # Start development server
//! $ cd my-awesome-app && epm dev
//! [INFO warp::server] listening on http://0.0.0.0:3000
//! ```
//!
//!
//! ## Hello, World!
//!
//! ```rust
//! //! src/lib.rs
//! use elvis::{
//! prelude::*,
//! widgets::{layouts::Center, Text},
//! };
//!
//! #[page]
//! struct Index;
//!
//! impl LifeCycle for Index {
//! fn create(&self) -> Node {
//! Center::new()
//! .child(Text::new().text("Hello, World!"))
//! .into()
//! }
//! }
//! ```
//!
//!
//! ## Examples
//!
//! + [hello-world][hello-world-example]
//! + [click][click-example]
//! + [router][router-example]
//! + [todo-mvc][todo-mvc]
//!
//!
//!
//! ## LICENSE
//!
//! Heartbreak Hotel.
//!
//! [1]: https://elvisjs.github.io/book
//! [2]: https://docs.rs/elvis
//! [community]: https://elvisjs.github.io/book/community
//! [hello-world-example]: https://github.com/elvisjs/elvis/tree/master/examples/hello-world
//! [click-example]: https://github.com/elvisjs/elvis/tree/master/examples/click
//! [router-example]: https://github.com/elvisjs/elvis/tree/master/examples/router
//! [todo-mvc]: https://github.com/elvisjs/elvis/tree/master/examples/todo-mvc
//! [roadmap]: https://github.com/elvisjs/elvis/milestones
// mod bridge;
// re-exports
pub use ;
// self exports
pub use crateError;
// web features
pub use ;