(id: string)
| 28 | |
| 29 | // Get template by ID |
| 30 | export function getTemplateById(id: string): ProjectTemplate | undefined { |
| 31 | return TEMPLATES.find((t) => t.id === id) |
| 32 | } |
| 33 | |
| 34 | // ----------------------------- |
| 35 | // Stack composition helpers |
no outgoing calls
no test coverage detected