1 2 3 4 5 6 7 8 9 10 11
use unreact::prelude::*; #[test] fn small_example() { let mut app = Unreact::new(Config::default(), false, "https://example.com") .expect("Could not create app"); app.index("page", object! {}); app.compile().expect("Could not compile"); }