@ark-ui/react
Version:
A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.
12 lines (9 loc) • 333 B
JavaScript
'use client';
import { createContext } from '../../utils/create-context.js';
const [MenuMachineProvider, useMenuMachineContext] = createContext({
name: "MenuMachineContext",
hookName: "useMenuMachineContext",
providerName: "<MenuMachineProvider />",
strict: false
});
export { MenuMachineProvider, useMenuMachineContext };