import React, {PureComponent, PropTypes} from 'react'; import autobind from 'autobind-decorator'; import {Dropdown, DropdownButton, DropdownItem, DropdownDivider} from '../base/dropdown'; import Link from '../base/link'; @autobind class ImportExport extends PureComponent { render () { const { handleImport, handleExportAll, handleExportWorkspace } = this.props; return (

Data Import and Export

Import format will be automatically detected (Insomnia, Postman v2, HAR, Curl)

Don't see your format here? {' '} Add Your Own.

Export Data Choose Export Type Current Workspace All Workspaces   

* Tip: You can also paste Curl commands into the URL bar

); } } ImportExport.propTypes = { handleImport: PropTypes.func.isRequired, handleExportAll: PropTypes.func.isRequired, handleExportWorkspace: PropTypes.func.isRequired }; export default ImportExport;