Wired redux

This commit is contained in:
Alejandro Celaya
2018-06-03 20:12:40 +02:00
parent b1e97ef022
commit e150b35e33
7 changed files with 43 additions and 10 deletions

13
src/common/MenuLayout.js Normal file
View File

@@ -0,0 +1,13 @@
import React from 'react';
import { Switch } from 'react-router-dom';
export default () => {
return (
<div>
<nav>Left menu</nav>
<Switch>
</Switch>
</div>
);
}