Testing: fetch servers by region

This commit is contained in:
cracklesparkle
2024-07-09 16:44:41 +09:00
parent 6f4aa1903d
commit a65a431b09
11 changed files with 227 additions and 23 deletions

View File

@ -0,0 +1,4 @@
export interface IRegion {
id: number;
name: string;
}

View File

@ -0,0 +1,3 @@
export interface PreferencesState {
darkMode: boolean;
}