aboutsummaryrefslogtreecommitdiff
path: root/client/src/Component
diff options
context:
space:
mode:
authorJoris2019-11-03 09:22:12 +0100
committerJoris2019-11-03 09:22:12 +0100
commita267f0bb4566389342c3244d3c082dc2453f4615 (patch)
tree29e62a08293bf740340518fc9be9b181aefed588 /client/src/Component
parent227dcd4435b775d7dbc5ae5d3d81b589897253cc (diff)
downloadbudget-a267f0bb4566389342c3244d3c082dc2453f4615.tar.gz
budget-a267f0bb4566389342c3244d3c082dc2453f4615.tar.bz2
budget-a267f0bb4566389342c3244d3c082dc2453f4615.zip
Show users in income table
Diffstat (limited to 'client/src/Component')
-rw-r--r--client/src/Component/Appearing.hs10
1 files changed, 10 insertions, 0 deletions
diff --git a/client/src/Component/Appearing.hs b/client/src/Component/Appearing.hs
new file mode 100644
index 0000000..e0144ca
--- /dev/null
+++ b/client/src/Component/Appearing.hs
@@ -0,0 +1,10 @@
+module Component.Appearing
+ ( view
+ ) where
+
+import Reflex.Dom (MonadWidget)
+import qualified Reflex.Dom as R
+
+view :: forall t m a. MonadWidget t m => m a -> m a
+view =
+ R.divClass "g-Appearing"