Rank change system UI first pass

This commit is contained in:
2025-12-16 18:47:56 -05:00
parent 7990c86a86
commit e0d9eeae92
5 changed files with 349 additions and 52 deletions

7
shared/types/rank.ts Normal file
View File

@@ -0,0 +1,7 @@
export type Rank = {
id: number
name: string
short_name: string
category: string
sortOrder: number
}