Skip to content

Instantly share code, notes, and snippets.

@marcoemrich
Last active July 3, 2020 14:36
Show Gist options
  • Save marcoemrich/c01e7293cd00a9ff1935df8d06ff7d49 to your computer and use it in GitHub Desktop.
Save marcoemrich/c01e7293cd00a9ff1935df8d06ff7d49 to your computer and use it in GitHub Desktop.
JS-Testing: index
import React from "react";
import ReactDOM from "react-dom";
import TicTacToe from './model/tic_tac_toe'
import {Board} from './components/board'
const App = document.getElementById("app");
ReactDOM.render(<Board game={TicTacToe.startWithSize(3, 3)} />, App);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment