Files
swagger-ui/src/core/components/jump-to-path.jsx
kyle 0359f9c364 housekeeping: bundle size reductions (#4713)
* set new bundlesize goal
* preserve `GeneratorFunction` instead of all function names
* use js-yaml fork that doesn't require esprima
* set HTML content directly, instead of using React-Markdown
* use remarkable for all Markdown rendering
* add babel-plugin-transform-react-remove-prop-types
* remove SplitPaneMode plugin
* remove react-collapse
* remove AST plugin, and yaml-js
* trim Markdown HTML string output before rendering
* disable obsolete function name preservation
* add `getComponent` to propTypes
2018-07-19 13:48:39 -07:00

10 lines
191 B
JavaScript

import React from "react"
// Nothing by default- component can be overridden by another plugin.
export default class JumpToPath extends React.Component {
render() {
return null
}
}