Module

Web.Chain.UI.UITabPane

Package
purescript-web-chain
Repository
david-sledge/purescript-web-chain

#TabPaneClassNames Source

type TabPaneClassNames :: (Type -> Type) -> (Type -> Type) -> (Type -> Type) -> (Type -> Type) -> (Type -> Type) -> Typetype TabPaneClassNames f1 f2 f3 f4 f5 = { activeTab :: f4 String, allTabs :: f3 String, panes :: f5 String, panesContainer :: f2 String, tabsContainer :: f1 String }

#mkTabPanes Source

mkTabPanes :: forall m f1 f2 f3 f4 f5 f6 d. MonadEffect m => Foldable f1 => Foldable f2 => Foldable f3 => Foldable f4 => Foldable f5 => Foldable f6 => f1 { content :: m Node, label :: String, tab :: m Node | d } -> TabPaneClassNames f2 f3 f4 f5 f6 -> m (Element /\ HTMLDivElement)