0
찾아 오시는 길 Composition section`response.send` 란 무엇인가요? (redux-thunk의 README.md에서)?
어디서 왔습니까?
// This is very useful for server side rendering, because I can wait
// until data is available, then synchronously render the app.
store.dispatch(
makeSandwichesForEverybody()
).then(() =>
response.send(ReactDOMServer.renderToString(<MyApp store={store} />))
);