You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
203 B
Rust

#![recursion_limit = "1024"]
extern crate web_sys;
extern crate yew;
extern crate yew_router;
extern crate yew_styles;
mod app;
mod pages;
use app::App;
pub fn main() {
yew::start_app::<App>();
}