mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 14:54:16 +00:00
progress on updating suspense tests
This commit is contained in:
parent
29cf1f4814
commit
96c956efdf
2 changed files with 3 additions and 2 deletions
|
@ -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>
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue