feat: created `TabContext` component

pull/107/head
Samuel Rowe 3 years ago
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…
Cancel
Save