ESLint fixes

This commit is contained in:
Kyle Shockey
2017-07-28 19:47:46 -07:00
parent f7018bc78f
commit b373182afe
12 changed files with 58 additions and 20 deletions

View File

@@ -1,5 +1,12 @@
import React from "react"
import PropTypes from "prop-types"
export default ({ version }) => {
const VersionStamp = ({ version }) => {
return <small><pre className="version"> { version } </pre></small>
}
VersionStamp.propTypes = {
version: PropTypes.string.isRequired
}
export default VersionStamp