Files
Dorod-Sky/skyvern-frontend/src/store/DeleteNodeCallbackContext.ts
Kerem Yilmaz 0053736f8f Deletable nodes (#801)
Co-authored-by: Muhammed Salih Altun <muhammedsalihaltun@gmail.com>
2024-09-10 17:07:56 +03:00

10 lines
225 B
TypeScript

import { createContext } from "react";
type DeleteNodeCallback = (id: string) => void;
const DeleteNodeCallbackContext = createContext<DeleteNodeCallback | undefined>(
undefined,
);
export { DeleteNodeCallbackContext };