This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Example of non-working react-router v4 | |
// If <Router> is moved into BasicExample | |
// OR | |
// redux connect() call is removed routing will work again | |
// Tested with: | |
// ├─ [email protected] | |
// ├─ [email protected] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Main exposing (..) | |
import Html exposing (Html, ul, li, div, text) | |
import Html.App as Html | |
import Html.Events exposing (onMouseEnter) | |
main = | |
Html.beginnerProgram { model = 0, view = view, update = update } |