| 123456789101112131415161718 |
- import React, { Component, PropTypes } from 'react';
- import './styles/Info';
-
- export default class Info extends Component {
- render() {
- return <div className="Info">
- <em>This program is a clone of the Russell Targ's App on the iOS platform. All credits goes to him.</em>
- <div>Extract from the app:</div>
- <blockquote>
- <div>The player is presented with four colored squares. For each trial, one has been selected at random by the ESP Trainer. Your task is to choose the correct square.</div>
- <div>If you succeed, you will [...] see a large color picture. Otherwise, the system lights up the correct square, and you proceed with the next trial.</div>
- <div>The score indicator at the top counts the number of correct choices. [...] After 24 trials you may begin a new game.</div>
- </blockquote>
- <div>You can find the app at the link below :</div>
- <a href="https://itunes.apple.com/fr/app/esp-trainer/id336882103?mt=8" className="apple-link" />
- </div>;
- }
- }
|