Workflow editor (#735)

Co-authored-by: Muhammed Salih Altun <muhammedsalihaltun@gmail.com>
This commit is contained in:
Kerem Yilmaz
2024-08-26 21:31:42 +03:00
committed by GitHub
parent d21b6e6adc
commit 3502093200
48 changed files with 2803 additions and 193 deletions

View File

@@ -0,0 +1,10 @@
import { useEffect } from "react";
function useMountEffect(callback: () => void) {
return useEffect(() => {
callback();
// eslint-disable-next-line react-hooks/exhaustive-deps
}, []);
}
export { useMountEffect };