VITALY-VORON ccf07f27f5
Some checks failed
Create and publish a Docker image / Publish image (push) Failing after 27s
Create and publish a Docker image / Deploy image (push) Has been skipped
Update Start.js
2023-08-24 21:44:52 +03:00

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;