mirror of
https://github.com/fullstack-cash/fullstack-gatsby-theme-bch-wallet.git
synced 2026-09-21 16:52:06 -07:00
23 lines
382 B
JavaScript
23 lines
382 B
JavaScript
import React from 'react'
|
|
|
|
class VersionStatus extends React.Component {
|
|
constructor (props) {
|
|
super(props)
|
|
this.state = {}
|
|
}
|
|
|
|
render () {
|
|
return (
|
|
<>
|
|
<div className='version-status'>
|
|
<div>
|
|
<p><b>Warning: Open Alpha - things will break</b></p>
|
|
</div>
|
|
</div>
|
|
</>
|
|
)
|
|
}
|
|
}
|
|
|
|
export default VersionStatus
|