19 lines
480 B
JavaScript
19 lines
480 B
JavaScript
import React from "react";
|
|
import { Link } from "react-router";
|
|
import MainContainer from "../containers/MainContainer";
|
|
|
|
class Home extends React.Component {
|
|
render() {
|
|
return (
|
|
<MainContainer>
|
|
<h1>Github Battle</h1>
|
|
<p className="lead">Some fancy motto</p>
|
|
<Link to="/playerOne">
|
|
<button type="button" className="btn btn-lg btn-success">Get started</button>
|
|
</Link>
|
|
</MainContainer>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default Home;
|