Skip to content

Instantly share code, notes, and snippets.

@PabloRegen
Last active March 4, 2019 04:54
Show Gist options
  • Save PabloRegen/b9ea2060ab84587e0d358483500bc394 to your computer and use it in GitHub Desktop.
Save PabloRegen/b9ea2060ab84587e0d358483500bc394 to your computer and use it in GitHub Desktop.
Setting App.js file
import React, { Component } from 'react';
const totalBoardRows = 40;
const totalBoardColumns = 60;
const newBoardStatus = () => {};
const BoardGrid = () => {};
const Slider = () => {};
class App extends Component {
state = {};
// Methods ...
render() {
return (
);
}
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment