blob: 93b6d301d881d87e10cf34fdb26ff63a931076d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
/*
* OpenBills - Self hosted browser app to generate and keep track of simple invoices
* Version - 0
* Licensed under the MIT license - https://opensource.org/licenses/MIT
*
* Copyright (c) 2021 Vidhu Kant Sharma
*/
import React, { Dispatch, SetStateAction } from "react";
import { Transport, Item } from "./../../Interfaces/interfaces";
interface Props {
setVisibility: Dispatch<SetStateAction<boolean>> // this component's visibility
transporter: Transport
items: Item[]
}
const TransportForm: React.FC<Props> = (props) => {
const hideSelf = () =>
props.setVisibility(false);
const closeOnBGClicked = (event: any) =>
event.target.className === "floatingMenuBG" && hideSelf();
return (
<div className={"floatingMenuBG"} onClick={closeOnBGClicked}>
<div className={"smallFloatingMenu TransportForm"}>
</div>
</div>
);
}
export default TransportForm;
|