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.
20 lines
487 B
20 lines
487 B
require('../../sass/board/board.scss');
|
|
|
|
import { Component } from 'react';
|
|
import Scorebar from './Scorebar';
|
|
import Titlebar from './Titlebar';
|
|
import Grid from './Grid';
|
|
import Message from './Message';
|
|
import Muncher from './Muncher';
|
|
|
|
export default class Board extends Component {
|
|
render() {
|
|
return (<div className='board'>
|
|
<Scorebar />
|
|
<Titlebar />
|
|
<Message />
|
|
<Grid />
|
|
<Muncher />
|
|
</div>);
|
|
}
|
|
};
|
|
|