Files
drawdb/src/hooks/useTypes.js
2024-03-13 01:27:42 +02:00

7 lines
167 B
JavaScript

import { useContext } from "react";
import { TypesContext } from "../context/TypesContext";
export default function useTypes() {
return useContext(TypesContext);
}