aboutsummaryrefslogtreecommitdiff
path: root/src/components/Form/Document/DocumentInfoForm.js
blob: 86837ed3c000347fa7ef2693f470b03defd3bf4c (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
35
36
37
38
39
/*
 * 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 "./../Form.scss";

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


const DocumentInfoForm = (/*props*/) => {
  const savedPeople = [
    {
      ID: 1,
      Name: "one"
    },
    {
      ID: 2,
      Name: "two"
    },
    {
      ID: 3,
      Name: "three"
    },
  ]
  return (
    <div className={"DocumentInfoForm"}>
      <SelectClientForm 
        savedPeople={savedPeople}
      />
    </div>
  );
}

export default DocumentInfoForm;