mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-21 07:10:33 +00:00
chrone: sperate client and server to different repos.
This commit is contained in:
23
src/containers/Drawers/PaperTemplate/PaperTemplateFooter.js
Normal file
23
src/containers/Drawers/PaperTemplate/PaperTemplateFooter.js
Normal file
@@ -0,0 +1,23 @@
|
||||
import React from 'react';
|
||||
import { If } from 'components';
|
||||
import intl from 'react-intl-universal';
|
||||
|
||||
export default function PaperTemplateFooter({
|
||||
footerData: { terms_conditions },
|
||||
}) {
|
||||
return (
|
||||
<div className="template__terms">
|
||||
<If condition={terms_conditions}>
|
||||
<div className="template__terms__title">
|
||||
<h4>{intl.get('conditions_and_terms')}</h4>
|
||||
</div>
|
||||
|
||||
<ul>
|
||||
{[terms_conditions].map((terms) => (
|
||||
<li>{terms}</li>
|
||||
))}
|
||||
</ul>
|
||||
</If>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user