--- import type { SkillLevel } from '@/types/sections/skills-section.types'; import SkillLevelTile from './skill-level-tile.astro'; export interface Props { skillLevel: SkillLevel; } const { skillLevel } = Astro.props; const levels = [1, 2, 3, 4, 5] as const; ---
{levels.map((tileLevel) => )}