aboutsummaryrefslogtreecommitdiffstats
path: root/app/Main.hs
diff options
context:
space:
mode:
Diffstat (limited to 'app/Main.hs')
-rw-r--r--app/Main.hs4
1 files changed, 1 insertions, 3 deletions
diff --git a/app/Main.hs b/app/Main.hs
index ad9b3ea..892cbb2 100644
--- a/app/Main.hs
+++ b/app/Main.hs
@@ -85,8 +85,6 @@ testChats =
data Action = NoOp | DraftChanged Int Text | DraftSubmitted Int
-type Slots = ("debounced" .== H.Slot VoidF () ())
-
data Query a = NoOpQ
component :: forall m. (MonadDOM m, MonadUnliftIO m) => H.Component Query () [Chat] m
@@ -100,7 +98,7 @@ component =
where
initialState _ = pure testChats
- render :: (MonadDOM m, MonadUnliftIO m) => [Chat] -> H.ComponentHTML Action Slots m
+ render :: (MonadDOM m, MonadUnliftIO m) => [Chat] -> H.ComponentHTML Action slots m
render chats =
L.runLayoutM Horizontal $ L.do
HH.div_