Need Help plz, Can't find the solution, nothing is working

tried every possible thing and even pasted the solved hint but the problem remains the same,

++++++LINK+++++

====================CODE==================

const List = props => {
  return <p></p>;
};

class ToDo extends React.Component {
  constructor(props) {
    super(props);
  }
  render() {
    return (
      <div>
        <h1>To Do Lists</h1>
        <h2>Today</h2>
        <List tasks={["Walk", "Cook", "Bake"]} />
        <h2>Tomorrow</h2>
        <List tasks={["Study", "Code", "Eat"]} />
      </div>
    );
  }
}
1 Like

Please don’t post pictures of code. Please cut and past the code and provide a link to the challenge. Also, put three backticks on the line before the code and again on the line after so the code shows and formats correctly.

1 Like

Sure Sir, I will take care of it for the next , i have solved the problem now, and thanks for the guide, I am very thankful for your precious time.

let me know is this edited one format is good enough?

1 Like

I’ve edited your post for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (').

2 Likes

great , I will definitely take care of it.

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.