Merge branch 'feature/documents-page' into feature/130-table-async
This commit is contained in:
46
src/pages/DocumentsBeneficiary/index.js
Normal file
46
src/pages/DocumentsBeneficiary/index.js
Normal file
@@ -0,0 +1,46 @@
|
||||
import React, { useEffect, useState, useCallback } from 'react';
|
||||
import { __ } from '@wordpress/i18n';
|
||||
import { pathOr } from 'ramda';
|
||||
|
||||
// store
|
||||
import { useStore } from '../../store';
|
||||
|
||||
// components
|
||||
|
||||
|
||||
const DocumentsBeneficiary = () => {
|
||||
const chosenCompanyId = useStore().main.chosenCompanyId();
|
||||
|
||||
const getStats = (resp) => {}
|
||||
|
||||
const errGetStats = () => {}
|
||||
|
||||
useEffect(() => {
|
||||
|
||||
}, [chosenCompanyId]);
|
||||
|
||||
return(
|
||||
<div className="appPage">
|
||||
<div className="appPage__pageHeader">
|
||||
<h1>{__('Gestione documenti', 'gepafin')}</h1>
|
||||
</div>
|
||||
|
||||
<div className="appPage__spacer"></div>
|
||||
|
||||
<div className="appPageSection statsBigBadges">
|
||||
<h2>{__('Documenti del rappresentante legale', 'gepafin')}</h2>
|
||||
|
||||
</div>
|
||||
|
||||
<div className="appPage__spacer"></div>
|
||||
|
||||
<div className="appPageSection statsBigBadges">
|
||||
<h2>{__('Documenti dell\'azienda', 'gepafin')}</h2>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
export default DocumentsBeneficiary;
|
||||
Reference in New Issue
Block a user