| Copyright | (C) 2016-2017 David M. Johnson |
|---|---|
| License | BSD3-style (see the file LICENSE) |
| Maintainer | David M. Johnson <djohnson.m@gmail.com> |
| Stability | experimental |
| Portability | non-portable |
| Safe Haskell | None |
| Language | Haskell2010 |
Miso.Svg
Description
Example usage:
import Miso import Miso.Svg intView :: Int -> View IntAction intView n = svg_ [ height_ "100", width "100" ] [ circle_ [ cx_ "50", cy_ "50", r_ "40", stroke_ "green", strokeWidth_ "4", fill_ "yellow" ] [] ]
More information on how to use miso is available on GitHub