Add OAS3 indicator

This commit is contained in:
Kyle Shockey
2017-05-31 18:47:51 -07:00
parent 38d2a2ae95
commit a0fbcc5dde
6 changed files with 27 additions and 4 deletions

View File

@@ -0,0 +1,13 @@
import React from "react"
import { OAS3ComponentWrapFactory } from "../helpers"
export default OAS3ComponentWrapFactory((props) => {
const { Ori } = props
return <span>
<Ori {...props} />
<small style={{ backgroundColor: "#89bf04" }}>
<pre className="version">OAS3</pre>
</small>
</span>
})