14 lines
295 B
Text
14 lines
295 B
Text
-- | `Web` module is an abstraction over most HTML-related code in order
|
|
-- | to have a consistent style through all the website.
|
|
module Web
|
|
( module Bulma
|
|
, module Web.Button
|
|
, module Web.Input
|
|
, module Web.Tag
|
|
) where
|
|
|
|
import Web.Button
|
|
import Web.Input
|
|
import Web.Tag
|
|
|
|
import Bulma
|