- 
                Notifications
    You must be signed in to change notification settings 
- Fork 19
Description
See #100. Basically, if users don't want to use the atomic CSS in web-view, or want to use an existing stylesheet, they ought to be able to without too much pain. (Note that web-view IS required, we need that type variable on View. Maybe we can come up with a way to let the user integrate with the type checker via the Reader effect or something?)
Options / ideas:
- 
Create a separate Web.Hyperbole.Minimalthat does not include web-view by default.
- 
Take web-view exports out of Web.Hyperbole, and require users to add a second import:
import Web.Hyperbole
import Web.Hyperbole.View
Then the user could switch to another approach by changing the second import to Web.Hyperbole.External or something...
Are there other frameworks or projects that have figured out how to do this effectively?
Open Questions and Issues:
- Will the approach we use work with the forms support? We don't want them to have to re-implement them just because they aren't using atomic css.