import React from "react"; type Props = { id: string; changeCurrentId: (event: React.MouseEvent) => void; }; export const Edit = ({ id, changeCurrentId }: Props) => { return ( ); };