mirror of https://github.com/ctk-hq/ctk
feat: created `TabContext` component
parent
36e2fb55cc
commit
9b7ec85bdb
@ -0,0 +1,4 @@
|
||||
import { createContext } from "react";
|
||||
import { ITabContext } from "../types";
|
||||
|
||||
export const TabContext = createContext<ITabContext | null>(null);
|
||||
@ -0,0 +1 @@
|
||||
export * from "./TabContext";
|
||||
Loading…
Reference in New Issue