fix(curriculum): remove seed code and format nested list in React lab (#65709)

This commit is contained in:
Dario
2026-02-05 08:55:14 +01:00
committed by GitHub
parent 4d8a6e2608
commit e65a656ebb

View File

@@ -16,9 +16,9 @@ demoType: onClick
2. Your `Footer` component should return a `footer` element that contains all the other elements.
3. Your `footer` element should have:
- At least three unordered lists, each with at least two list items.
- At least one paragraph element with a copyright `©` symbol.
- At least three links with the `href` value set to `#` and the link content set to an icon or text of your choice.
- At least three unordered lists, each with at least two list items.
- At least one paragraph element with a copyright `©` symbol.
- At least three links with the `href` value set to `#` and the link content set to an icon or text of your choice.
# --hints--
@@ -135,7 +135,7 @@ links.forEach(link => {
```
```jsx
export const Footer = () => {};
```
# --solutions--