From e65a656ebb12da3bce0972fcf2619e95c372488e Mon Sep 17 00:00:00 2001 From: Dario <105294544+Dario-DC@users.noreply.github.com> Date: Thu, 5 Feb 2026 08:55:14 +0100 Subject: [PATCH] fix(curriculum): remove seed code and format nested list in React lab (#65709) --- .../lab-reusable-footer/673b02b03134b04637bf7055.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/curriculum/challenges/english/blocks/lab-reusable-footer/673b02b03134b04637bf7055.md b/curriculum/challenges/english/blocks/lab-reusable-footer/673b02b03134b04637bf7055.md index 8bb3e96d39c..20cdcb34779 100644 --- a/curriculum/challenges/english/blocks/lab-reusable-footer/673b02b03134b04637bf7055.md +++ b/curriculum/challenges/english/blocks/lab-reusable-footer/673b02b03134b04637bf7055.md @@ -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--