From 430bab52826baae6a2619945e99f350718453069 Mon Sep 17 00:00:00 2001 From: Orion Kindel Date: Fri, 6 Oct 2023 18:39:25 -0500 Subject: [PATCH] doc --- readme.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/readme.md b/readme.md index 6b50269..f775a51 100644 --- a/readme.md +++ b/readme.md @@ -51,7 +51,9 @@ export const App = () => { return (

{item.title}

- {item.description} + + {item.description} +
) }) @@ -85,7 +87,10 @@ action Init = do app = mkComponent { initialState: StateEmpty , render: renderApp - , eval: mkEval (defaultEval {handleAction = action, initialize: Just Init}) + , eval: mkEval ( defaultEval { handleAction = action + , initialize: Just Init + } + ) } ```