diff options
author | Alexander Foremny <aforemny@posteo.de> | 2024-10-12 20:18:48 +0200 |
---|---|---|
committer | Alexander Foremny <aforemny@posteo.de> | 2024-10-13 10:46:10 +0200 |
commit | f781ef3f0367f5a266e7adb175ffaf5e69838302 (patch) | |
tree | 3ed499263de382967eff9409a252dc8c352ac88a /frontend/app/Effect.hs | |
parent | 962db630a81a4040902c23c773df3069a48db0a3 (diff) |
fix frontend
Diffstat (limited to 'frontend/app/Effect.hs')
-rw-r--r-- | frontend/app/Effect.hs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/frontend/app/Effect.hs b/frontend/app/Effect.hs index ad87d72..a79754f 100644 --- a/frontend/app/Effect.hs +++ b/frontend/app/Effect.hs @@ -1,5 +1,8 @@ module Effect (Eff (..)) where +import Miso.String (MisoString) + data Eff = ReloadCollections + | Log MisoString deriving (Show, Eq) |