monorepo/visions/ui/src/App.tsx

17 lines
387 B
TypeScript
Raw Normal View History

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;