From c9f33e22cb53b603295818d9c54058ca0ba3765b Mon Sep 17 00:00:00 2001 From: Spencer Ferris <3319370+spencewenski@users.noreply.github.com> Date: Sat, 19 Oct 2024 20:52:31 -0700 Subject: [PATCH] Add chapter on adding a ui --- book/src/SUMMARY.md | 2 ++ book/src/adding-a-ui/index.md | 1 + book/src/adding-a-ui/leptos.md | 4 ++++ 3 files changed, 7 insertions(+) create mode 100644 book/src/adding-a-ui/index.md create mode 100644 book/src/adding-a-ui/leptos.md diff --git a/book/src/SUMMARY.md b/book/src/SUMMARY.md index 49135420..085056aa 100644 --- a/book/src/SUMMARY.md +++ b/book/src/SUMMARY.md @@ -36,3 +36,5 @@ - [Health checks](features/health.md) - [Lifecycle hooks](features/lifecycle.md) - [Testing](features/testing.md) +- [Adding a UI](adding-a-ui/index.md) + - [With Leptos](adding-a-ui/leptos.md) diff --git a/book/src/adding-a-ui/index.md b/book/src/adding-a-ui/index.md new file mode 100644 index 00000000..a953323a --- /dev/null +++ b/book/src/adding-a-ui/index.md @@ -0,0 +1 @@ +# Adding a UI \ No newline at end of file diff --git a/book/src/adding-a-ui/leptos.md b/book/src/adding-a-ui/leptos.md new file mode 100644 index 00000000..d1b9c210 --- /dev/null +++ b/book/src/adding-a-ui/leptos.md @@ -0,0 +1,4 @@ +# Adding a UI with Leptos + +For an example of how to use Leptos with Roadster, see +our [leptos-ssr example](https://github.com/roadster-rs/roadster/tree/main/examples/leptos-ssr). \ No newline at end of file