App.js 420 B

12345678910111213141516171819202122
  1. import React from 'react';
  2. import styled from 'styled-components';
  3. import Game from "./components/Game";
  4. const Wrapper = styled.div`
  5. background-color: #222;
  6. color: #ccc;
  7. font-weight: 500;
  8. height: 100%;
  9. width: 100%;
  10. display: flex;
  11. flex-flow: column nowrap;
  12. justify-content: space-between;
  13. `
  14. export default () => (
  15. <React.StrictMode>
  16. <Wrapper>
  17. <Game/>
  18. </Wrapper>
  19. </React.StrictMode>
  20. );