feat(info): indicate OpenAPI 2.0 definition version (#9167)

This commit is contained in:
Krzysztof Kowalczyk
2023-08-31 13:09:48 +02:00
committed by GitHub
parent 6fd6e339cc
commit 4b48e36c09
11 changed files with 45 additions and 47 deletions

View File

@@ -0,0 +1,15 @@
import React from "react"
import PropTypes from "prop-types"
const OpenAPIVersion = ({ oasVersion }) => (
<small className="version-stamp">
<pre className="version">OAS {oasVersion}</pre>
</small>
)
OpenAPIVersion.propTypes = {
oasVersion: PropTypes.string.isRequired
}
export default OpenAPIVersion