22 lines
935 B
TypeScript
22 lines
935 B
TypeScript
|
import React from "react";
|
||
|
|
||
|
import styles from "./SectionFormStyles.css";
|
||
|
import { M3Field } from "../Fields/M3Field";
|
||
|
import { M3PhoneField } from "../Fields/M3PhoneField";
|
||
|
import { M3CnpjField } from "../Fields/M3CnpjField";
|
||
|
|
||
|
export const CompanyForm: StorefrontFunctionComponent = () => {
|
||
|
return (
|
||
|
<section className={styles.section}>
|
||
|
<h2 className={styles.sectionTitle}>Empresa</h2>
|
||
|
<div className={styles.sectionGroup}>
|
||
|
<M3CnpjField name="corporateDocument" label="CNPJ:"></M3CnpjField>
|
||
|
<M3Field name="tradeName" label="NOME FANSTASIA:"></M3Field>
|
||
|
<M3PhoneField name="businessPhone" label="TELEFONE COMERCIAL:"></M3PhoneField>
|
||
|
<M3Field name="stateRegistration" label="INSCRIÇÃO ESTADUAL:"></M3Field>
|
||
|
<M3Field name="corporateName" label="RAZÃO SOCIAL:"></M3Field>
|
||
|
</div>
|
||
|
</section>
|
||
|
);
|
||
|
};
|