Initial commit

This commit is contained in:
2020-05-28 09:59:52 +02:00
commit 89eee85b09
24 changed files with 11555 additions and 0 deletions

7
src/models/TableEntry.ts Normal file
View File

@@ -0,0 +1,7 @@
interface TableEntry {
placement: number;
name: string;
onlineTime: string;
}
export default TableEntry;