Files
leptos/examples/stores
martin frances e767518142 chore: updated clippy rule affecting stores example (#4120)
status.done().then_some("line-through").unwrap_or_default()
 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `if status.done() { "line-through" } else { Default::default() }`
2025-06-28 14:53:27 -04:00
..

Stores Example

This example shows how to use reactive stores, by building a client-side rendered TODO application.

Getting Started

See the Examples README for setup and run instructions.

Quick Start

Run trunk serve --open to run this example.