Is there a way to import clojure.string? Like is there a NPM-Package for that, that I unpack?
This is part of the standard scittle package. You can just use require
I get
(require '[reagent.dom :as dom]
^--- Could not resolve symbol: clojure.string
2 '[reagent.core :as r]
3 [clojure.string :as string])
Did you forget a quote in front of the libspec?
Ah, yes, forgot it, thanks!