I'm trying to create an elm app using both the Html.Styled package as well as the Navigation package. The issue is that they both have their own program function but as far as I know I only use one program for my entire app. Is it possible to use both packages' program function, or is there a separate way to use those two packages?
Thanks
import Xyz exposing (..)you will have name collisions. As I have understood, you can import only the module and then use the components asXyz.somethingto avoid name collisions. See modules part in syntax documentation - kaskelotti