mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-09 20:30:54 -05:00
* Layout initial * Add FillRosterSection component * Move tournaments to feature folder * Refactor Button props * SubmitButton * Register action * Identifier -> Id * Invite link via nanoid * Team info submit * Enter tiebreaker map list UI * Invite members to tournament team initial * Show banner if joined a team not captain of * Add back teams page * Change team roster size color when good * Delete tournament team member
13 lines
313 B
TypeScript
13 lines
313 B
TypeScript
import type { RankedModeShort } from "./types";
|
|
|
|
export const modes = [
|
|
{ short: "TW" },
|
|
{ short: "SZ" },
|
|
{ short: "TC" },
|
|
{ short: "RM" },
|
|
{ short: "CB" },
|
|
] as const;
|
|
|
|
export const modesShort = modes.map((mode) => mode.short);
|
|
export const rankedModesShort = modesShort.slice(1) as RankedModeShort[];
|