# ghostkit/2.25.0/gutenberg/blocks/form/fields/select/save.js

Block Animations, Motion &amp; Scroll Effects – Ghost Kit, version 2.25.0. 16 lines.

- Page: https://pluginprobe.com/plugins/ghostkit/2.25.0/code/gutenberg/blocks/form/fields/select/save.js
- Raw: https://pluginprobe.com/plugins/ghostkit/2.25.0/raw/gutenberg/blocks/form/fields/select/save.js
- Modified: 2022-02-07T14:32:38+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/ghostkit/2.25.0/code/gutenberg/blocks/form/fields/select/save.js#L10-L20`.

```javascript
/**
 * WordPress dependencies
 */
const { Component } = wp.element;

/**
 * Block Save Class.
 */
class BlockSave extends Component {
  render() {
    return null;
  }
}

export default BlockSave;

```
