-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
395 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<title>TodoMVC | Reflex FRP example via GHC WASM</title> | ||
</head> | ||
<body> | ||
<script>globalThis.example = "reflex-todomvc";</script> | ||
<script src="index.js" type="module"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
Cabal-version: 3.0 | ||
Name: reflex-todomvc | ||
Version: 0.1 | ||
Synopsis: Functional Reactive TodoMVC | ||
Description: An implementation of the TodoMVC specification using the Reflex-DOM functional reactive DOM library | ||
License: BSD-3-Clause | ||
License-file: LICENSE | ||
Author: Ryan Trinkle | ||
Maintainer: [email protected] | ||
Stability: Experimental | ||
Category: FRP | ||
|
||
library | ||
hs-source-dirs: src | ||
build-depends: | ||
base, | ||
reflex, | ||
ghcjs-dom == 0.9.*, | ||
reflex-dom-core, | ||
containers, | ||
text, | ||
mtl | ||
exposed-modules: | ||
Reflex.TodoMVC | ||
ghc-options: -Wall -fwarn-tabs -funbox-strict-fields -O2 |
Oops, something went wrong.