her.esy.fun/src/Scratch/en/blog/Yesod-tutorial-for-newbies/code/Echo.hs
2021-04-18 12:23:24 +02:00

9 lines
157 B
Haskell

module Handler.Echo where
import Import
getEchoR :: Text -> Handler RepHtml
getEchoR theText = do
defaultLayout $ do
[whamlet|<h1>#{theText}|]