├── .gitignore ├── LICENSE ├── README.md ├── Setup.hs ├── cabal.config ├── default.nix ├── miso-components-example.cabal ├── nixpkgs.nix ├── src ├── Button.hs └── Main.hs └── stack.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | dist/ 3 | 4 | /result 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPtje/miso-component-example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPtje/miso-component-example/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /cabal.config: -------------------------------------------------------------------------------- 1 | compiler: ghcjs 2 | -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPtje/miso-component-example/HEAD/default.nix -------------------------------------------------------------------------------- /miso-components-example.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPtje/miso-component-example/HEAD/miso-components-example.cabal -------------------------------------------------------------------------------- /nixpkgs.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPtje/miso-component-example/HEAD/nixpkgs.nix -------------------------------------------------------------------------------- /src/Button.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPtje/miso-component-example/HEAD/src/Button.hs -------------------------------------------------------------------------------- /src/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPtje/miso-component-example/HEAD/src/Main.hs -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FPtje/miso-component-example/HEAD/stack.yaml --------------------------------------------------------------------------------