What is WRONG with my code? Help

Tell us what’s happening:

Your code so far



const CurrentDate = (props) => {
  return (
    <div>
      { /* change code below this line */ }
  <p>The current date is:{props.Date} </p>
      { /* change code above this line */ }
    </div>
  );
};

class Calendar extends React.Component {
  constructor(props) {
    super(props);
  }
  render() {
    return (
      <div>
        <h3>What date is it?</h3>
        { /* change code below this line */ }
        <CurrentDate date = {Date()} />
        { /* change code above this line */ }
      </div>
    );
  }
};

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36.

Link to the challenge:

Prop names are case-sensitive. If the prop is called date, then you should access it as props.date, not props.Date

Awesome! Thank you so much.