Rename package to quickchess

Change "Submit" button to "Join"
This commit is contained in:
Sage Vaillancourt 2022-10-13 00:28:33 -04:00
parent b4d75a7855
commit 7ad5079289
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
{
"name": "chess",
"name": "quickchess",
"version": "0.1.0",
"private": true,
"dependencies": {

View File

@ -35,7 +35,7 @@ class NameForm extends React.Component {
</label>
<div style={{ textAlign: 'center', width: '80%' }}>
<input className='big-input' style={{ width: '50%' }} name='lobby-name' type="text" value={this.state.value} onChange={this.handleChange} />
<input className='big-input' style={{ marginLeft: '8px' }} type="submit" value="Submit" />
<input className='big-input' style={{ marginLeft: '8px' }} type="submit" value="Join" />
</div>
</form>
);