This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
I am creating custom viewers by wrapping the inspector component. It seems that customizing works both by passing props and metadata. Is there a difference between these two and considerations which one to prefer?
;; Using metadata
[ins/inspector
{}
(with-meta value {::pv/default ::pv/table})]
;; Using props
[ins/inspector
{::pv/default ::pv/table}
(with-meta value {})]
Sorry it's taken a bit to respond, but I would say the metadata way would be the more "officially" supported method but either works. Did you end up choosing a strategy?