We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4928445 commit 861039aCopy full SHA for 861039a
src/client.js
@@ -42,7 +42,7 @@ if (module.hot) {
42
try {
43
const nextRoutes = require('./routes').default;
44
45
- store.replaceReducer(nextRoutes);
+ render(nextRoutes);
46
} catch (error) {
47
console.error(`==> 😭 Routes hot reloading error ${error}`);
48
}
src/components/UserList/index.js
@@ -11,6 +11,7 @@ type Props = { list: Array<Object> };
11
export default ({ list }: Props) => (
12
<div className={styles.UserList}>
13
<h4>User List</h4>
14
+ 123
15
<ul>
16
{list.map(({ id, name }) => (
17
<li key={id}>
0 commit comments