9 lines
179 B
TypeScript
9 lines
179 B
TypeScript
import { createContext } from "react";
|
|
|
|
type Category = {
|
|
name: string;
|
|
group: { name: string } | undefined;
|
|
};
|
|
|
|
export const CategoryContext = createContext<Category[]>([]);
|