mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 12:20:31 +00:00
11 lines
226 B
TypeScript
11 lines
226 B
TypeScript
import { Countries } from '@/constants/countries';
|
|
|
|
export const getAllCountries = () => {
|
|
return Object.keys(Countries).map((countryCode) => {
|
|
return {
|
|
...Countries[countryCode],
|
|
countryCode,
|
|
}
|
|
});
|
|
};
|