handling of empty database

This commit is contained in:
2024-01-05 16:28:48 +01:00
parent 0b85e74eb0
commit e537be1870
5 changed files with 37 additions and 15 deletions

View File

@@ -3,7 +3,7 @@ import { PlusCircleIcon } from "@heroicons/react/24/outline";
export interface AddLocationButtonProps {
/** year month at which the new billing location should be addes */
yyyymm: string
yyyymm: number
}
export const AddLocationButton:React.FC<AddLocationButtonProps> = ({yyyymm}) =>