diff --git a/docs/layers/components.md b/docs/layers/components.md index d7fe860..5524f56 100644 --- a/docs/layers/components.md +++ b/docs/layers/components.md @@ -7,7 +7,7 @@ This layer include [React components](https://facebook.github.io/react/docs/reac To add a new page in Home.jsx (with side-bar and top-bar) : - In components/Home.jsx -- Inside the tag +- Inside the [Switch] tag ```jsx @@ -17,7 +17,7 @@ To add a new page in Home.jsx (with side-bar and top-bar) : ``` -- Add your component route between tag to load in home page +- Add your component route between [Switch] tag to load in home page ```javascript @@ -26,7 +26,7 @@ To add a new page in Home.jsx (with side-bar and top-bar) : To add a new item for menu bar - In components/Home.jsx -- Inside the tag +- Inside the [Menu] tag ```javascript @@ -36,7 +36,7 @@ To add a new item for menu bar ``` -- Add your component NavLink between tag +- Add your component NavLink between [Menu] tag ```javascript @@ -45,12 +45,12 @@ To add a new item for menu bar ``` -*Note: You can choose your icon for from [material-ui icons](http://www.material-ui.com/#/components/svg-icon)* +*Note: You can choose your icon for [SvgIcon] from [material-ui icons](http://www.material-ui.com/#/components/svg-icon)* To add your page in Master page (without side-bar menu and top-bar) - In components/Master/Master.tsx -- Add your tag between tag +- Add your [Route] tag between [Switch] tag ```javascript