From d3f8810c7cdb925ff5cbe4b7f7e21035a84dd41b Mon Sep 17 00:00:00 2001 From: Bilal Catic Date: Mon, 27 May 2019 19:35:22 +0200 Subject: [PATCH] add form for door lock charge report --- client/src/scenes/DoorLockCharges/index.js | 29 ++++++++++++++++++++-- 1 file changed, 27 insertions(+), 2 deletions(-) diff --git a/client/src/scenes/DoorLockCharges/index.js b/client/src/scenes/DoorLockCharges/index.js index 9e533bf..52020ee 100644 --- a/client/src/scenes/DoorLockCharges/index.js +++ b/client/src/scenes/DoorLockCharges/index.js @@ -1,16 +1,41 @@ import React, { Component } from 'react'; +import { Container, Form } from "semantic-ui-react"; + import MainMenu from '../../components/MainMenu'; class DoorLockCharges extends Component { render () { return ( -
+

Door Lock Charges


-
+
+ + + + + + Generate Report + + ); } }