# tablepress/3.0/admin/js/export.js

TablePress – Tables in WordPress made easy, version 3.0. 20 lines.

- Page: https://pluginprobe.com/plugins/tablepress/3.0/code/admin/js/export.js
- Raw: https://pluginprobe.com/plugins/tablepress/3.0/raw/admin/js/export.js
- Modified: 2024-04-02T08:17:54+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/tablepress/3.0/code/admin/js/export.js#L10-L20`.

```javascript
/**
 * JavaScript code for the "Export" screen.
 *
 * @package TablePress
 * @subpackage Views JavaScript
 * @author Tobias Bäthge
 * @since 1.0.0
 */

/**
 * Internal dependencies.
 */
import { initializeReactComponent } from './common/react-loader';
import Screen from './export/screen';

initializeReactComponent(
	'tablepress-export-screen',
	<Screen />
);

```
