[resumes][feat] Update resume top nav bar (#344)

* [resumes][feat] Update resume top nav bar

* [portal][fix] convert number to Month type
This commit is contained in:
Keane Chan
2022-10-09 22:26:23 +08:00
committed by GitHub
parent 53433787eb
commit c252f57bd5
3 changed files with 7 additions and 12 deletions

View File

@ -1,6 +1,6 @@
import { Select } from '@tih/ui';
type Month = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12;
export type Month = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12;
export type MonthYear = Readonly<{
month: Month;