37 lines
761 B
TypeScript
37 lines
761 B
TypeScript
import { Col, Row } from "reactstrap";
|
|
import React from "react";
|
|
import ValidationField from "../../../../ValidationField/ValidationField";
|
|
|
|
const ContactDetails = () => {
|
|
return (
|
|
<div className="bigRow">
|
|
<ValidationField
|
|
type="number"
|
|
name="phone_number_1"
|
|
label="phone_number"
|
|
/>
|
|
|
|
<ValidationField
|
|
type="number"
|
|
name="phone_number_2"
|
|
label="additional_phone_number"
|
|
/>
|
|
|
|
<ValidationField
|
|
type="TextArea"
|
|
name="address"
|
|
label="address"
|
|
placeholder="address"
|
|
/>
|
|
<ValidationField
|
|
type="TextArea"
|
|
name="notes"
|
|
label="note"
|
|
placeholder="note"
|
|
/>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default ContactDetails;
|