(rum/defc export [{:keys [cljs-started? static?] :as state} *state]
(when-not static?
[:div {:style {:min-height 75}}
(when cljs-started?
[:div {:class "export"}
(expandable-section
{:label "Export"
:url ""
:*content (delay (export-form state *state))
:on-close #(swap! *state dissoc :export-filter)})])
[:div {:style {:clear "right"}}]]))