LandingPage.js 320 B

12345678
  1. import React from 'react';
  2. import "./css/landingpage.css";
  3. export default function LandingPage({ state, newGame }) {
  4. return <div className="landing-page row h-100 align-content-center justify-content-center">
  5. <button className="btn btn-primary mb-5" onClick={newGame}>Begin met spelen</button>
  6. </div>;
  7. }