progress on updating suspense tests

This commit is contained in:
Greg Johnston 2024-06-14 15:16:20 -04:00
parent 29cf1f4814
commit 96c956efdf
2 changed files with 3 additions and 2 deletions

View file

@ -65,7 +65,7 @@ pub fn App() -> impl IntoView {
<Route path=StaticSegment("none") view=None/>
</ParentRoute>
// in-order
<ParentRoute
/*<ParentRoute
path=StaticSegment("in-order")
ssr=SsrMode::InOrder
view=|| view! {
@ -97,7 +97,7 @@ pub fn App() -> impl IntoView {
<Route path=StaticSegment("parallel") view=Parallel/>
<Route path=StaticSegment("inside-component") view=InsideComponent/>
<Route path=StaticSegment("none") view=None/>
</ParentRoute>
</ParentRoute>*/
</Routes>
</main>
</Router>

View file

@ -14,6 +14,7 @@ async fn main() -> std::io::Result<()> {
HttpServer::new(move || {
// Generate the list of routes in your Leptos App
let routes = generate_route_list(App);
println!("{routes:#?}");
let leptos_options = &conf.leptos_options;
let site_root = &leptos_options.site_root;