diaz-camilo
diaz-camilo
Updates the template to the new way of writing react components as functional components using hooks. changes are minor. functionality and content were not modified. I hope this gets merged,...
based on [changes.ts](https://github.com/xyflow/xyflow/blob/eb71e34d44229689b7424995f370111b4d490c1c/packages/system/src/types/changes.ts#L56C1-L68C3) ```js export type EdgeSelectionChange = NodeSelectionChange; export type EdgeRemoveChange = NodeRemoveChange; export type EdgeAddChange = { item: EdgeType; type: 'add'; index?: number; }; export type EdgeReplaceChange =...