Answers for "displaying the date react"

0

displaying the date react

import React from "react";

export default class App extends React.Component {
  state = {
    date: ""
  };

  componentDidMount() {
    this.getDate();
  }

  getDate = () => {
    var date = new Date().toDateString();
    this.setState({ date });
  };

  render() {
    const { date } = this.state;

    return <div>{date}</div>;
  }
}
}

export default App;
Posted by: Guest on August-17-2020

Code answers related to "displaying the date react"

Code answers related to "Javascript"

Browse Popular Code Answers by Language