19 lines
531 B
JavaScript
19 lines
531 B
JavaScript
import React, { Component } from 'react';
|
|
import '../styles/styles.css'
|
|
|
|
class Home extends Component {
|
|
render() {
|
|
return (
|
|
<div className='center'>
|
|
<div className='logo'>
|
|
<center><p className='logo'><b>Sprint Battleship</b></p></center>
|
|
</div>
|
|
<button className='main'><p>Новая игра</p></button>
|
|
<div className='space'></div>
|
|
<button className='main'><p>Присоединиться</p></button>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default Home; |