Improved basic pages: privacy, terms, license
This commit is contained in:
parent
440f6c610d
commit
2b3c9a5868
9 changed files with 239 additions and 57 deletions
15
imports/ui/pages/License/License.js
Normal file
15
imports/ui/pages/License/License.js
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
import React from 'react';
|
||||
import Page from '../Page/Page';
|
||||
import { translate } from 'react-i18next';
|
||||
|
||||
const License = props => (
|
||||
<div className="License">
|
||||
<Page
|
||||
title={props.t("Licencia")}
|
||||
subtitle={props.t("Última actualización 15 de noviembre de 2017")}
|
||||
page="license"
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
|
||||
export default translate([], { wait: true })(License);
|
||||
Loading…
Add table
Add a link
Reference in a new issue