felixakiragreen / react-kronos

A fast, intuitive, and elegant date and time picker for React.
https://felixakiragreen.github.io/react-kronos/
MIT License
90 stars 28 forks source link

error in date #80

Closed vishgirase95 closed 4 years ago

vishgirase95 commented 4 years ago

input- import React from "react" import ReactDOM from "react-dom"

let c = new date();

ReactDOM.render(

<h1>Hello sir, good morning, {c}</h1>,
document.getElementById('root')

); output error- 'date' is not defined no-undef

felixakiragreen commented 4 years ago

@vishgirase95 try let c = new Date(); (capital D, not lowecase d)