Add door lock charges screen #3

Merged
bilal.catic merged 12 commits from add-door-lock-charges-screen into master 2019-05-28 13:38:44 +02:00
2 changed files with 5 additions and 3 deletions
Showing only changes of commit 790582ceda - Show all commits

View File

@@ -1,5 +1,7 @@
import React, { Component } from 'react'; import React, { Component } from 'react';
import { Container } from 'semantic-ui-react';
import MainMenu from '../../components/MainMenu'; import MainMenu from '../../components/MainMenu';
class Home extends Component { class Home extends Component {
@@ -25,12 +27,12 @@ class Home extends Component {
render () { render () {
const {apiStatus} = this.state; const {apiStatus} = this.state;
return ( return (
<div> <Container>
<MainMenu/> <MainMenu/>
<h3>CRM Integration</h3> <h3>CRM Integration</h3>
<hr/> <hr/>
<h5>Integration API Status : {apiStatus}</h5> <h5>Integration API Status : {apiStatus}</h5>
</div> </Container>
); );
} }
} }