Lists
Lists help structure information clearly in technical writing.
Ordered list
Use ordered lists when the sequence of items matters, such as step-by-step instructions.
- Install dependencies using
npm install
- Build the project with
npm run build
- Deploy the build folder to the server
Unordered list
Use unordered lists for related items without a specific order, such as software features.
- Integration with third-party APIs.
- Automated backup and recovery.
- Multi-language support.
Nested list
Use to show relationships between items, such as categories and subcategories.
- Never call component functions directly
- Never pass around Hooks as regular values
- Don’t dynamically mutate a Hook
- Don’t dynamically use Hooks
Note
The Tailwind CSS Typography example notes that "nested lists are rarely a good idea." This suggests that we might not need to sacrifice readability by using nested lists to indicate hierarchy.