diff options
author | Alexander Foremny <aforemny@posteo.de> | 2024-06-04 09:28:10 +0200 |
---|---|---|
committer | Alexander Foremny <aforemny@posteo.de> | 2024-06-04 09:37:28 +0200 |
commit | 342ebdf61b3b9021b9e58cfce607e96a6e7ae54e (patch) | |
tree | f8a97170fc688c8177db22df524c3775f137bffd /frontend/app/Form.hs | |
parent | a19623cc781c62e50ce7e5c71635e664c9338846 (diff) |
refactor `Form` module
Diffstat (limited to 'frontend/app/Form.hs')
-rw-r--r-- | frontend/app/Form.hs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/frontend/app/Form.hs b/frontend/app/Form.hs new file mode 100644 index 0000000..f07487b --- /dev/null +++ b/frontend/app/Form.hs @@ -0,0 +1,8 @@ +module Form + ( module Form.Internal, + module Form.Input, + ) +where + +import Form.Input +import Form.Internal |