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
20 lines
374 B
/**
|
|
* 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 ExportScreen from './export/screen';
|
|
|
|
initializeReactComponent(
|
|
'tablepress-export-screen',
|
|
<ExportScreen />
|
|
);
|