Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
demountable
/
wp-content
/
plugins
/
astra-sites
/
inc
/
lib
/
onboarding
/
assets
/
src
/
components
/
zipwp-auth
:
index.js
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
import Button from '../button/button'; import { __ } from '@wordpress/i18n'; const ZipWPAuthorize = () => { return ( <Button className="ist-button" onClick={ () => { const url = wpApiSettings?.zipwp_auth?.screen_url + '?type=token&redirect_url=' + wpApiSettings?.zipwp_auth?.redirect_url; window.location.href = url; } } > { __( 'Authorize', 'astra-sites' ) } </Button> ); }; export default ZipWPAuthorize;