Presentational Component と Container Component
ロジックと見た目を切り分ける
components/App.js
import React from "react";
const App = ({ number, plus, minus }) => (
<div>
<h2>App {number}</h2>
<button
onClick={() => {
plus(10);
}}
>
+ 10
</button>
<button
onClick={() => {
minus(10);
}}
>
- 10
</button>
</div>
);
export default App;containers/App.js
index.js
Last updated