# ghostkit/3.3.3/gutenberg/store/base/components/index.js

Block Animations, Motion &amp; Scroll Effects – Ghost Kit, version 3.3.3. 13 lines.

- Page: https://pluginprobe.com/plugins/ghostkit/3.3.3/code/gutenberg/store/base/components/index.js
- Raw: https://pluginprobe.com/plugins/ghostkit/3.3.3/raw/gutenberg/store/base/components/index.js
- Modified: 2024-02-18T18:40:24+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/3.3.3/code/gutenberg/store/base/components/index.js#L10-L20`.

```javascript
import { createReduxStore, register } from '@wordpress/data';

import * as selectors from './selectors';

const store = createReduxStore('ghostkit/base/components', {
	selectors,
	reducer(state) {
		return state;
	},
});

register(store);

```
