You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
374 B

/**
* 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 ImportScreen from './import/screen';
initializeReactComponent(
'tablepress-import-screen',
<ImportScreen />
);