UNPKG

@zohodesk/hooks

Version:

Unified Component Library - Hooks

19 lines (17 loc) 259 B
import * as CONST from "../constants"; /** * @module accordion/actions */ /** *@function handleOpen * @param {number} index * @returns */ export default function handleOpen(index) { return { type: CONST.OPEN, data: { index } }; }