エントリーの編集

エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています

- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
Use a factory or JSX
react_legacyfactory.md React Element Factories and JSX You probably came here because your code i... react_legacyfactory.md React Element Factories and JSX You probably came here because your code is calling your component as a plain function call. This is now deprecated: var MyComponent = require('MyComponent'); function render() { return MyComponent({ foo: 'bar' }); // WARNING } JSX React components can no longer be called directly like this. Instead you can use JSX. var React = require('react'