UNPKG

@navikt/ds-react

Version:

React components from the Norwegian Labour and Welfare Administration.

13 lines 434 B
import { useTabsContext } from "../../Tabs.context.js"; /** * Tabs hook for managing the visible/hidden state of Tabs.Panel */ export function useTabPanel({ value }) { const { id, selectedValue, makeTabId, makeTabPanelId } = useTabsContext(); return { labelledbyId: makeTabId(id, value), hidden: selectedValue !== value, id: makeTabPanelId(id, value), }; } //# sourceMappingURL=useTabPanel.js.map