KAEDE Hack blog

JavaScript 中心に ライブラリなどの使い方を解説する技術ブログ。

Entries from 2020-04-26 to 1 day

React props or state

分割その二 props super(props); this.message = 'Hello from Note Component'; this.noteContent = props.noteContent; this.noteId = props.noteId; propsのdataをclass直下に渡すことができる,?? State constructor(props) { super(props); this.state…

React Component の実用

why class Componentを使用したReactでの動的サイト製作の記事 wesのReact Firebase Note App Tutorialを参考にして作っている. index index.js import App from './App'; ReactDOM.render( <React.StrictMode> <App /> </React.StrictMode>, document.getElementById('root') ); 基本的にはindex.htmlに…