17 lines
387 B
TypeScript
17 lines
387 B
TypeScript
|
import React from 'react';
|
||
|
import logo from './logo.svg';
|
||
|
import './App.css';
|
||
|
import { PlayingFieldComponent } from './components/PlayingField/PlayingField';
|
||
|
import { Client } from './client';
|
||
|
|
||
|
const App = () => {
|
||
|
let client = new Client();
|
||
|
return (
|
||
|
<div className="App">
|
||
|
<PlayingFieldComponent client={client} />
|
||
|
</div>
|
||
|
);
|
||
|
}
|
||
|
|
||
|
export default App;
|