mirror of
https://github.com/azaion/ui.git
synced 2026-06-22 03:41:10 +00:00
13 lines
186 B
TypeScript
13 lines
186 B
TypeScript
import type { Purpose } from '../types';
|
|
|
|
export const purposes: Purpose[] = [
|
|
{
|
|
value: 'tank',
|
|
label: 'Tank',
|
|
},
|
|
{
|
|
value: 'artillery',
|
|
label: 'Artillery',
|
|
},
|
|
];
|