reagent

A minimalistic ClojureScript interface to React.js http://reagent-project.github.io/
Ryan Mooney 2020-07-27T13:38:00.065100Z

What is the difference in requiring something using ":as" vs requiring it using ":default" in the header? I've noticed that locally as works fine, but in production it needs to be default, and I thought understanding the difference between them might give me an idea of why?

ordnungswidrig 2020-07-27T14:27:13.065600Z

import * as name from "module-name" vs. import defaultExport from "module-name"

ordnungswidrig 2020-07-27T14:27:44.066Z

Beware that this is a shadow-cljs-only featrue.

Ryan Mooney 2020-07-27T14:32:15.066200Z

thank you