# tablepress/2.4.4/admin/js/import.js

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

- Page: https://pluginprobe.com/plugins/tablepress/2.4.4/code/admin/js/import.js
- Raw: https://pluginprobe.com/plugins/tablepress/2.4.4/raw/admin/js/import.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/2.4.4/code/admin/js/import.js#L10-L20`.

```javascript
/**
 * JavaScript code for the "Import" 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 './import/screen';

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

```
