# Components
This layer include [React components](https://facebook.github.io/react/docs/react-component.html) that let you split the UI into independent, reusable pieces, and think about each piece in isolation.
## Add a new component
To add a new page in Home (with side-bar and top-bar) :
- In components/Home
- Inside the [Switch] tag
```jsx
{/* Add your here! */}
```
- Add your component route between [Switch] tag to load in home page
```javascript
```
To add a new item for menu bar
- In components/Home
- Inside the [Menu] tag
```javascript
```
- Add your component NavLink between [Menu] tag
```javascript
} />
{/* Other menu itemes */}
```
*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 [Route] tag between [Switch] tag
```javascript
{/* Other routes */}
```