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

@@ -2,10 +2,10 @@ import { PlusCircleIcon } from "@heroicons/react/24/outline";
import React from "react";
export interface AddMonthButtonProps {
yearMonth: number;
nextYearMonth: number;
}
export const AddMonthButton:React.FC<AddMonthButtonProps> = ({ yearMonth }) =>
<a href={`/year-month/${yearMonth}/add`} className='grid self-center tooltip' data-tip="Dodaj novi mjesec">
export const AddMonthButton:React.FC<AddMonthButtonProps> = ({ nextYearMonth }) =>
<a href={`/year-month/${nextYearMonth}/add`} className='grid self-center tooltip' data-tip="Dodaj novi mjesec">
<PlusCircleIcon className="h-[1em] w-[1em] cursor-pointer text-4xl" />
</a>