aboutsummaryrefslogtreecommitdiff
path: root/src/components/Form/Document/DocumentInfoForm.tsx
blob: 7f330460b0f075083a8de05f11cc596281b21ff2 (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
/*
 * 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/*, { useState }*/ from "react";
import { Person } from "./../../../interfaces";
import "./../Form.scss";

import SelectClientForm from "./../People/SelectClientForm";

interface Props {
  savedPeople: Person[]
}

const DocumentInfoForm: React.FC<Props> = (props) => {
  return (
    <div className={"DocumentInfoForm"}>
      <SelectClientForm 
        savedPeople={props.savedPeople}
      />
    </div>
  );
}

export default DocumentInfoForm;