/var/www/vhosts/ihelp.ro/ajutam.ro/wp-content/plugins/give/blocks/components/edit-form
Edit: /var/www/vhosts/ihelp.ro/ajutam.ro/wp-content/plugins/give/blocks/components/edit-form/index.js (933B)
/**
* WordPress dependencies
*/
const { __ } = wp.i18n;
const { Button } = wp.components;
/**
* Internal dependencies
*/
import { getSiteUrl } from '../../utils';
import GiveBlankSlate from '../blank-slate';
/**
* Render No forms Found UI
*/
const EditForm = ( { attributes, setAttributes, formId } ) => {
const changeForm = () => {
setAttributes( { prevId: attributes.id } );
setAttributes( { id: 0 } );
};
return (
);
};
export default EditForm;