Improved basic pages: privacy, terms, license

This commit is contained in:
vjrj 2017-11-15 20:01:15 +01:00
parent 440f6c610d
commit 2b3c9a5868
9 changed files with 239 additions and 57 deletions

View 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);