mirror of
https://github.com/danbee/chess
synced 2025-03-04 08:39:06 +00:00
20 lines
288 B
JavaScript
20 lines
288 B
JavaScript
"use strict";
|
|
|
|
import React from "react";
|
|
import ReactDOM from "react-dom";
|
|
|
|
import ChessBoard from "components/chess-board";
|
|
|
|
class App extends React.Component {
|
|
render() {
|
|
return (
|
|
<ChessBoard />
|
|
);
|
|
}
|
|
}
|
|
|
|
ReactDOM.render(
|
|
<App />,
|
|
document.getElementById('app')
|
|
);
|