-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add custom constants, updating gitignore
- Loading branch information
Azizbek Jumanazarov
committed
Oct 15, 2024
1 parent
b1314b5
commit 598b588
Showing
3 changed files
with
15 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
type SiteConstants = { | ||
MIN_YEAR: number; | ||
MAX_YEAR: number; | ||
NUMBER_OF_RANDOM_COUNTRY: number; | ||
}; | ||
|
||
const siteConstants: SiteConstants = { | ||
MIN_YEAR: 2020, | ||
MAX_YEAR: 2030, | ||
NUMBER_OF_RANDOM_COUNTRY: 3, | ||
}; | ||
|
||
export default siteConstants; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters