12 lines
274 B
TypeScript
12 lines
274 B
TypeScript
import { birds } from '@/data/bird'
|
|
import { Feature } from '@/modules/feature/feature'
|
|
|
|
export const features: Feature[] = birds.map((name) => ({
|
|
name,
|
|
complexity: Math.floor(Math.random() * 6),
|
|
leadTime: 0,
|
|
status: 'doing',
|
|
step: Infinity,
|
|
qualityIssue: 0
|
|
}))
|