-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* refactor: 559 - change scss to modules * refactor: 559 - get rid of marquee dependency * refactor: 559 - reduce code duplication * refactor: 559 - move test file inside ui folder * refactor: 559 - move constant to constants file * refactor: 559 - remove use client directive * refactor: 559 - replace div with section * fix: 559 - incorrect test * refactor: 559 - replace css values with constants * refactor: remove will-change property * refactor: reduce code duplication
- Loading branch information
Showing
14 changed files
with
159 additions
and
407 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 @@ | ||
export const places = [ | ||
'Kazakhstan', | ||
'Belarus', | ||
'Latvia', | ||
'Poland', | ||
'Turkey', | ||
'Georgia', | ||
'Montenegro', | ||
'Uzbekistan', | ||
'Online', | ||
'Kyrgyzstan', | ||
'Lithuania', | ||
] as const; |
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 |
---|---|---|
@@ -1 +1 @@ | ||
export { Places } from './ui/places'; | ||
export { Places } from './ui/places/places'; |
Oops, something went wrong.