summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/jetpack/extensions/blocks/simple-payments/save.js')
-rw-r--r--plugins/jetpack/extensions/blocks/simple-payments/save.js9
1 files changed, 0 insertions, 9 deletions
diff --git a/plugins/jetpack/extensions/blocks/simple-payments/save.js b/plugins/jetpack/extensions/blocks/simple-payments/save.js
deleted file mode 100644
index ed81e7a8..00000000
--- a/plugins/jetpack/extensions/blocks/simple-payments/save.js
+++ /dev/null
@@ -1,9 +0,0 @@
-/**
- * External dependencies
- */
-import { RawHTML } from '@wordpress/element';
-
-export default function Save( { attributes } ) {
- const { productId } = attributes;
- return productId ? <RawHTML>{ `[simple-payment id="${ productId }"]` }</RawHTML> : null;
-}