About page

This commit is contained in:
vjrj 2018-02-22 10:49:15 +01:00
parent a296fc6051
commit ae3b9e5faf
14 changed files with 126 additions and 8 deletions

View file

@ -0,0 +1,19 @@
/* eslint-disable import/no-absolute-path */
/* eslint-disable react/jsx-indent-props */
/* eslint-disable react/jsx-indent */
import React from 'react';
import { translate } from 'react-i18next';
import Page from '../Page/Page';
const About = props => (
<div className="About">
<Page
title={props.t('Sobre \'{{appName}}\'', { appName: props.t('AppName') })}
subtitle={props.t('¿Vecindarios vigilando y combatiendo fuegos? ¿de qué va todo esto?')}
page="about"
/>
</div>
);
export default translate([], { wait: true })(About);