import React, { FC } from 'react'; interface PropsTagProps { pKey: string; pValue: string; del: string; } const PropsTag: FC = ({ pKey, pValue, del }) => { return (
{pKey} {pValue}
); }; export default PropsTag;