FlightsTable component props <=> parameter

This commit is contained in:
Peter Hoppe
2022-12-06 11:40:35 +01:00
parent 5357f51bf2
commit 03d11bc278
6 changed files with 31 additions and 57 deletions

4
src/tools/tools.ts Normal file
View File

@ -0,0 +1,4 @@
export function CheckArray(collection: any)
{
console.log("data is array: " + Array.isArray(collection));
}