update docs
This commit is contained in:
+4
-4
@@ -5,7 +5,7 @@ Detailed walkthroughs of the example applications included with Clojure TUI.
|
||||
## Running Examples
|
||||
|
||||
```bash
|
||||
# With Babashka (simple sync runtime)
|
||||
# With Babashka (recommended - fast startup)
|
||||
bb counter
|
||||
bb timer
|
||||
bb list
|
||||
@@ -13,7 +13,7 @@ bb spinner
|
||||
bb views
|
||||
bb http
|
||||
|
||||
# With Clojure (full async support)
|
||||
# With full Clojure
|
||||
clojure -A:dev -M -m examples.counter
|
||||
clojure -A:dev -M -m examples.timer
|
||||
clojure -A:dev -M -m examples.list-selection
|
||||
@@ -263,7 +263,7 @@ A multi-select list demonstrating cursor navigation and selection.
|
||||
|
||||
```clojure
|
||||
(ns examples.list-selection
|
||||
(:require [tui.simple :as tui]))
|
||||
(:require [tui.core :as tui]))
|
||||
|
||||
(def items
|
||||
["Apple" "Banana" "Cherry" "Date" "Elderberry"
|
||||
@@ -519,7 +519,7 @@ A multi-view application demonstrating state machine navigation.
|
||||
|
||||
```clojure
|
||||
(ns examples.views
|
||||
(:require [tui.simple :as tui]))
|
||||
(:require [tui.core :as tui]))
|
||||
|
||||
(def menu-items
|
||||
[{:id :profile :label "View Profile" :desc "See your user information"}
|
||||
|
||||
Reference in New Issue
Block a user