style(alpha tag): Removed the 'Alpha' sticker

This commit is contained in:
Daniel Gonzalez
2021-04-19 16:33:26 -04:00
parent 9132bbc0bd
commit 20acf91edf
+11 -5
View File
@@ -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>
)}
</>
)
}