mirror of
https://github.com/yewstack/yew.git
synced 2025-12-08 21:26:25 +00:00
* simple counter application with functional components * clean up some comments * use the word 'function' instead of 'functional' Co-authored-by: Muhammad Hamza <muhammadhamza1311@gmail.com> * add the counter functional example package to workspace root cargo toml * add data-trunk link tag in index html * include counter functional into the examples readme file Co-authored-by: Muhammad Hamza <muhammadhamza1311@gmail.com>
48 lines
1.0 KiB
TOML
48 lines
1.0 KiB
TOML
[workspace]
|
|
members = [
|
|
# Packages
|
|
"packages/yew",
|
|
"packages/yew-macro",
|
|
"packages/yew-agent",
|
|
"packages/yew-router",
|
|
"packages/yew-router-macro",
|
|
|
|
# Examples
|
|
"examples/agents",
|
|
"examples/boids",
|
|
"examples/contexts",
|
|
"examples/counter",
|
|
"examples/counter_functional",
|
|
"examples/dyn_create_destroy_apps",
|
|
"examples/file_upload",
|
|
"examples/function_memory_game",
|
|
"examples/function_router",
|
|
"examples/function_todomvc",
|
|
"examples/futures",
|
|
"examples/game_of_life",
|
|
"examples/inner_html",
|
|
"examples/js_callback",
|
|
"examples/keyed_list",
|
|
"examples/mount_point",
|
|
"examples/nested_list",
|
|
"examples/node_refs",
|
|
"examples/password_strength",
|
|
"examples/portals",
|
|
"examples/router",
|
|
"examples/simple_ssr",
|
|
"examples/timer",
|
|
"examples/todomvc",
|
|
"examples/two_apps",
|
|
"examples/webgl",
|
|
"examples/web_worker_fib",
|
|
"examples/ssr_router",
|
|
"examples/suspense",
|
|
|
|
# Tools
|
|
"tools/changelog",
|
|
"tools/process-benchmark-results",
|
|
"tools/benchmark-struct",
|
|
"tools/benchmark-hooks",
|
|
"tools/website-test",
|
|
]
|