Figwheel は以下のコードをうまく表示します。しかし、変更を確認するにはページを更新する必要があります。Figwheel が変更を表示するには、何を変更する必要がありますか? アプリケーションの状態を失うことなく、再描画を強制するコマンドはありますか?
ところで: Chrome には Disable Cache trueがあり、ファイルを保存すると CLJS アイコンが表示されます。
(defn simple-example []
[ui/mui-theme-provider {:mui-theme (get-mui-theme
{:palette {:text-color (color :blue800)}})}
[:div
[ui/app-bar {:title "Hi all"
:icon-class-name-right "muidocs-icon-navigation-expand-more"}]
[ui/paper
[:div
[ui/tabs
[ui/tab {:label "Menu" :value "0"}
[:div "Hello world"]]]]]]]))
(defn ^:export run []
(render [simple-example]
(js/document.getElementById "app"))))