"use client";
import { createContext } from"react";
// TabsContext is in own file to avoid// it being re-created during Hot ReloadingconstTabsContext = /*#__PURE__*/createContext({
portal: null,
active: null,
setActive: () => {}
});
exportdefaultTabsContext;