ghcjs-perch-0.3.2: src/GHCJS/Perch.hs
{-|
Module : GHCJS.Perch
Description : Monadic DOM builder
Copyright : (c) Athur S. Fayzrakhmanov, 2015
Alberto G. Corona, 2015
License : GPL-3
Maintainer : heraldhoi@gmail.com
Stability : experimental
Portability : Any
Monad and Monoid instances for a builder that hang DOM elements from the
current parent element.
-}
module GHCJS.Perch
( -- * Perch DOM Builder
module Internal.Perch
-- * Types
, Elem
, PropId
, Attribute
, NamedEvent (..)
, JsEvent (..)
-- * Internal API
, module Internal.API )
where
import Internal.API
import Internal.Perch hiding (withPerch, withPerchBuild)
import Internal.Type