-----------------------------------------------------------------------------
{-# LANGUAGE OverloadedStrings #-}
-----------------------------------------------------------------------------
-- |
-- Module      :  Miso.Native.X.Element.Webview
-- Copyright   :  (C) 2016-2026 David M. Johnson
-- License     :  BSD3-style (see the file LICENSE)
-- Maintainer  :  David M. Johnson <code@dmj.io>
-- Stability   :  experimental
-- Portability :  non-portable
--
-- [/<webview/>](https://lynxjs.org/api/elements/built-in/webview.html)
--
-- Embeds a web page.
--
----------------------------------------------------------------------------
module Miso.Native.X.Element.Webview
  ( module Miso.Native.X.Element.Webview.Event
  , module Miso.Native.X.Element.Webview.Method
  , module Miso.Native.X.Element.Webview.Property
  ) where
-----------------------------------------------------------------------------
import Miso.Native.X.Element.Webview.Event
import Miso.Native.X.Element.Webview.Method
import Miso.Native.X.Element.Webview.Property
-----------------------------------------------------------------------------