mirror of
https://github.com/ryannhg/elm-spa.git
synced 2024-11-22 01:32:43 +03:00
Adding explicit 'exposing'
This could be added in a different section later, but I got stuck tryig to follow along.
This commit is contained in:
parent
6db2fcd505
commit
4c27c2b0c2
@ -175,7 +175,10 @@ port load : (Json.Value -> msg) -> Sub msg
|
||||
Above, we've created a `port module` that defines our `save` and `load` ports. Next, we'll describe the data we want to store, as well as how to convert it to and from JSON:
|
||||
|
||||
```elm
|
||||
port module Storage exposing (..)
|
||||
port module Storage exposing
|
||||
( Storage, fromJson, onChange
|
||||
, increment, decrement
|
||||
)
|
||||
|
||||
import Json.Encode as Encode
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user