Add enums tab

This commit is contained in:
1ilit
2024-06-30 13:19:21 +03:00
parent 259835892a
commit 810afe4bc0
13 changed files with 313 additions and 18 deletions

6
src/hooks/useEnums.js Normal file
View File

@@ -0,0 +1,6 @@
import { useContext } from "react";
import { EnumsContext } from "../context/EnumsContext";
export default function useEnums() {
return useContext(EnumsContext);
}