mirror of
https://github.com/drawdb-io/drawdb.git
synced 2025-05-24 18:39:12 +00:00
7 lines
183 B
JavaScript
7 lines
183 B
JavaScript
import { useContext } from "react";
|
|
import { SaveStateContext } from "../context/SaveStateContext";
|
|
|
|
export default function useSaveState() {
|
|
return useContext(SaveStateContext);
|
|
}
|