Revamping this whole thing

This commit is contained in:
Daniel Ledda
2020-12-24 12:18:58 +01:00
parent 5950cd869e
commit 0dc3fdb9b8
15 changed files with 721 additions and 238 deletions

9
webapp/src/Snapshot.ts Normal file
View File

@@ -0,0 +1,9 @@
interface Snapshot {
id: number,
temp: number,
humidity: number,
co2: number,
time: string,
}
export default Snapshot;