{-# LANGUAGE OverloadedStrings #-} module Network.HTTP.Form.WebApp (renderPage) where import Data.ByteString as BS import Data.Text as Txt import Network.HTTP.Form (Form(..)) renderPage :: Form -> [Text] -> [(ByteString, Maybe ByteString)] -> IO Text renderPage _ _ _ = return ""