23 lines
560 B
JavaScript
23 lines
560 B
JavaScript
import React from "react";
|
|
|
|
const Start = (props) => {
|
|
|
|
const route = props.getValue;
|
|
|
|
return (
|
|
<div style={{
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
alignContent: 'center',
|
|
flexWrap: 'wrap',
|
|
justifyContent: 'space-between',
|
|
height: '95vh',
|
|
backgroundImage: '../../data/img/Rectangle 27.png',
|
|
}}>
|
|
<img src="" alt="Icon"/>
|
|
<button onClick={() => route('/')}>Начать</button>
|
|
</div>
|
|
)
|
|
};
|
|
|
|
export default Start; |