React - Pass Props to a Stateless Functional Component

Tell us what’s happening:

Describe your issue in detail here.

Your code so far

i just wanted to say hi this is real business here i hope im smart enough to keep on keeping on goodtimes to all yall …yes im having trouble here but i,ll go to sleep and tomorrow i,ll understand
i do appreciate yall and ive read way more then the 40 minutes its alotted me

const CurrentDate = (props) => {
  return (
    <div>
      { /* Change code below this line */ }
      <p>The current date is: </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 />
        { /* 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/121.0.0.0 Safari/537.36 Edg/121.0.0.0

Challenge Information:

React - Pass Props to a Stateless Functional Component

You appear to have created this post without editing the template. Please edit your post to Tell us what’s happening in your own words.

its not easy and im just talking outloud but i want it you aint ever heard RichardBillings computer scientist What…i want that i’ll be here tomorrow i dont understand right now but i,ll read it right tomorrow

Hi @richardgbillings

Don’t mind the system generate message, it is supposed to check that posters add a comment, however it messes up sometimes.

You do not appear to have entered any code into the challenge.

Let the forum know what issue or problem you are facing, so the appropriate assistance or guidance is provided.

Happy coding

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