mirror of
https://github.com/fullstack-cash/fullstack-gatsby-theme-bch-wallet.git
synced 2026-09-23 01:32:04 -07:00
style(alpha tag): Removed the 'Alpha' sticker
This commit is contained in:
@@ -3,17 +3,23 @@ import React from 'react'
|
||||
class VersionStatus extends React.Component {
|
||||
constructor (props) {
|
||||
super(props)
|
||||
this.state = {}
|
||||
this.state = {
|
||||
show: false
|
||||
}
|
||||
}
|
||||
|
||||
render () {
|
||||
return (
|
||||
<>
|
||||
<div className='version-status'>
|
||||
<div>
|
||||
<p><b>Warning: Open Alpha - things will break</b></p>
|
||||
{this.state.show && (
|
||||
<div className='version-status'>
|
||||
<div>
|
||||
<p>
|
||||
<b>Warning: Open Alpha - things will break</b>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
</>
|
||||
)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user