mirror of
https://github.com/XFox111/TabsAsideExtension.git
synced 2026-04-22 07:58:01 +03:00
13 lines
266 B
TypeScript
13 lines
266 B
TypeScript
import { GroupItem } from "@/models/CollectionModels";
|
|
import { createContext } from "react";
|
|
|
|
const GroupContext = createContext<GroupContextType>(null!);
|
|
|
|
export default GroupContext;
|
|
|
|
export type GroupContextType =
|
|
{
|
|
group: GroupItem;
|
|
indices: number[];
|
|
};
|