You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
438 B
18 lines
438 B
require('../../sass/welcome/welcome.scss');
|
|
|
|
import { Component } from 'react';
|
|
|
|
import NewGame from './new-game.component';
|
|
import HighScores from './high-scores.component';
|
|
|
|
export default class Welcome extends Component {
|
|
render() {
|
|
return (
|
|
<div className='welcome'>
|
|
<img src="res/title.png" />
|
|
<NewGame />
|
|
<HighScores />
|
|
</div>
|
|
);
|
|
};
|
|
};
|
|
|