Last active
July 3, 2020 14:36
-
-
Save marcoemrich/c01e7293cd00a9ff1935df8d06ff7d49 to your computer and use it in GitHub Desktop.
JS-Testing: index
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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