module Bulma.Components.Tabs
exposing
( root
)
{-| [Bulma tabs component](http://bulma.io/documentation/components/tabs/)
@docs root
-}
import Bulma.Util exposing (bulmaNode)
import Html exposing (Html, Attribute, div)
{-| [`<div class="tabs">`](http://bulma.io/documentation/components/tabs/)
-}
root : List (Attribute msg) -> List (Html msg) -> Html msg
root =
bulmaNode div "tabs"