Currently, I am working on a project in Electric Clojure that requires importing a CSS file to enhance the styling of my application. While I have been able to add styles using dom/element, the resulting code appears cluttered. What is the most effective method for importing a CSS file into ClojureScript and applying these styles to both dom and reagent components?
In my attempts to import a CSS file into a ClojureScript project, I experimented with using a Hiccup link:
[:link {:href "material-ui-test/src/app/main.css", :rel "stylesheet"}]]
Furthermore, my goal is to import CSS files for React components into the project.