This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-03-05
Channels
- # aleph (1)
- # announcements (1)
- # babashka (6)
- # beginners (25)
- # biff (6)
- # calva (61)
- # clojure (15)
- # clojure-europe (2)
- # clojurescript (34)
- # cursive (7)
- # events (2)
- # figwheel-main (5)
- # fulcro (10)
- # gratitude (1)
- # malli (2)
- # pathom (1)
- # polylith (3)
- # portal (1)
- # re-frame (3)
- # reagent (10)
- # releases (2)
- # shadow-cljs (19)
- # spacemacs (5)
- # xtdb (2)
[:> mui/TableContainer {:component Paper}
[:> mui/Table {:sx {:minWidth 650} :size :small :aria-label "view-recipe-ingredients"}
[:> mui/TableHeader
[:> mui/TableRow
[:> mui/TableCell "Ingredients"]
[:> mui/TableCell "Quantity"]]]
[:> mui/TableBody
[:> mui/TableRow
[:> mui/TableCell "Ingredients"]
[:> mui/TableCell "Quantity"]]]]]
That's not all relevant code.
In any case - what happens when you replace Paper
above with (do (js/console.log Paper) Paper)
? If it logs undefined
, then you're either importing Paper
incorrectly and are mistaken about it being logged before, or you're overriding Paper
with undefined
at some point.
Alternatively, your mui/TableContainer
might potentially have different API from the TableComponent
in JS - maybe you're using a different version of the library.
But either way, impossible to say for sure without full code.