9 lines
342 B
TypeScript
9 lines
342 B
TypeScript
// Plain data, deliberately kept out of SessionsTable.tsx (a "use client"
|
|||
|
|
// module) so server components (e.g. the session detail page) can import it
|
||
|
|
// without pulling a value across the client/server compilation boundary.
|
||
|
|
export const STATUS_VARIANT = {
|
||
|
|
active: "default",
|
||
|
|
completed: "secondary",
|
||
|
|
aborted: "destructive",
|
||
|
|
} as const;
|