ESPTrainer built with Meteor and React

Info.jsx 985B

123456789101112131415161718
  1. import React, { Component, PropTypes } from 'react';
  2. import './styles/Info';
  3. export default class Info extends Component {
  4. render() {
  5. return <div className="Info">
  6. <em>This program is a clone of the Russell Targ's App on the iOS platform. All credits goes to him.</em>
  7. <div>Extract from the app:</div>
  8. <blockquote>
  9. <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>
  10. <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>
  11. <div>The score indicator at the top counts the number of correct choices. [...] After 24 trials you may begin a new game.</div>
  12. </blockquote>
  13. <div>You can find the app at the link below :</div>
  14. <a href="https://itunes.apple.com/fr/app/esp-trainer/id336882103?mt=8" className="apple-link" />
  15. </div>;
  16. }
  17. }