A big ton of refactoring. Basically split up Mail.elm into a hand full smaller (more manageable) files.

This commit is contained in:
2021-05-06 14:50:48 +02:00
parent 8d0aded26f
commit c4a54ee2e4
10 changed files with 3140 additions and 2702 deletions

28
src/PC/PC.elm Normal file
View File

@ -0,0 +1,28 @@
module PC.PC exposing (..)
import Html exposing (Html)
--import Json.Encode as JE
import Json.Decode as JD
import PC.Types exposing (..)
import PC.Defaults exposing (..)
import PC.Helpers exposing (..)
import PC.Update exposing (..)
import PC.View exposing (..)
update : PC_Msg -> PC_Model -> (PC_Model, PC_AfterUpdateAction)
update = pc_update
view : PC_Model -> Html PC_Msg
view = pc_view
init : PC_Model
init = initalModel