LoginSignup
3
1

More than 3 years have passed since last update.

time要素のdatetime属性はReactではdateTimeだった

Last updated at Posted at 2016-11-10

概要

エラーの通りなので、
わざわざ記事にするようなことではないかなと思ったのですが
大文字小文字に気がつかずしばらくハマったので、もしかしたら誰かの役に立つかもと記事化しました。

time予想のdatetime属性はReactではdateTimeだよという話。

本題

<time class="date" datetime="2016-01-01">2016年01月01日</time>

上記をReactで

<time className="date" datetime="2016-01-01">2016年01月01日</time>

とするとConsoleで以下のように怒られます 

Warning: Unknown DOM property datetime. Did you mean dateTime?

timeのTを大文字にして

<time className="date" dateTime="2016-01-01">2016年01月01日</time>

これで解消。

3
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
1