diff options
author | Joris | 2019-11-03 09:22:12 +0100 |
---|---|---|
committer | Joris | 2019-11-03 09:22:12 +0100 |
commit | a267f0bb4566389342c3244d3c082dc2453f4615 (patch) | |
tree | 29e62a08293bf740340518fc9be9b181aefed588 /client/src/Component | |
parent | 227dcd4435b775d7dbc5ae5d3d81b589897253cc (diff) |
Show users in income table
Diffstat (limited to 'client/src/Component')
-rw-r--r-- | client/src/Component/Appearing.hs | 10 |
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" |