Skip to content

Commit a28b464

Browse files
authored
Drop wrap-dev in rfx example
1 parent 074fde1 commit a28b464

File tree

1 file changed

+1
-2
lines changed
  • examples/rfx-todomvc/src/rfx_todomvc

1 file changed

+1
-2
lines changed

examples/rfx-todomvc/src/rfx_todomvc/ui.cljs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
(ns rfx-todomvc.ui
22
(:require [io.factorhouse.hsx.core :as hsx]
33
[io.factorhouse.rfx.core :as rfx]
4-
[io.factorhouse.rfx.dev :refer [wrap-dev]]
54
["react" :as react]
65
["react-dom/client" :refer [createRoot]]))
76

87
(defonce root
98
(createRoot (.getElementById js/document "app")))
109

1110
(defonce todo-context
12-
(wrap-dev (rfx/init {:initial-value {:todos {}}})))
11+
(rfx/init {:initial-value {:todos {}}}))
1312

1413
(rfx/reg-event-db
1514
:todos/add

0 commit comments

Comments
 (0)