Comment made by: deraen
I can see the point of only allowing slashes with strings.
However, if we do this, it might be good to check the warnings we give when trying to do this:
`
(ns example.core
(:require [react-dom/server :as sdf]))
No such namespace: react-dom/server, could not locate react_dom_SLASH_server.cljs, react_dom_SLASH_server.cljc, or JavaScript source providing "server"
`
Notice how it says "server" instead of react-dom/server. This is because everything allows slashes, but foreign lib code only uses name part instead of namespace. (This patch doesn't change the warning.)