About page
This commit is contained in:
parent
a296fc6051
commit
ae3b9e5faf
14 changed files with 126 additions and 8 deletions
19
imports/ui/pages/About/About.js
Normal file
19
imports/ui/pages/About/About.js
Normal 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);
|
||||
Loading…
Add table
Add a link
Reference in a new issue