# ExperienceList

Group multiple experience entries into a stacked timeline. Your career history, elegantly formatted.

## Notes

- Compose ExperienceList with li children that contain ExperienceCard.
- Keep sorting and grouping logic page-owned. We just make it look like a fancy timeline.
- Order it reverse-chronologically unless you're a time traveler.



## Example

```astro
<ExperienceList>
  <li>
    <ExperienceCard ... />
  </li>
</ExperienceList>
```
