About.js 2.91 KB
import React, { Component } from 'react';
import Dictionary from './Dictionary/Dictionary.js';
import DictionarySense from './Dictionary/Sense.js';
import './About.css';

class About extends Component {
  render() {
    return (
      <div className="content">
        <div id="about">
          <Dictionary
            title="COMPUTER SCIENTIST"
            headword="Computer-scientist"
            type="n.s."
            pronounciation="kəmˈpjuːtə-ˈsaɪəntɪst"
            origin_text="Shamelessly taken and slightly modified definition
            of lexicographer from Samual Johnsons"
            origin_url="http://johnsonsdictionaryonline.com/?p=4848"
            origin="Dictionary of the english language (1755)"
            phonetics_url="http://www.photransedit.com/online/text2phonetics.aspx"
            phonetics="PhoTransEdit">
            <DictionarySense>
              A writer of computer programs; a harmless drudge that busies
              himself in tracing the bug, and detailing the significance of
              bits.
            </DictionarySense>
          </Dictionary>
          &nbsp;
          <Dictionary
            title="DAD"
            headword="Dad"
            type="n.s."
            pronounciation="dæd"
            origin_url="http://johnsonsdictionaryonline.com/?p=2716"
            origin="Dictionary of the english language (1755)"
            phonetics_url="http://www.photransedit.com/online/text2phonetics.aspx"
            phonetics="PhoTransEdit">
            <DictionarySense>
              [The child's way of expressing father. It is remarkable, that,
              in all parts of the world, the word for father, as first taught
              to children, is compounded of a and t, or the kindred letter d
              differently placed; as tad, Welsh; ἄττα, Greek; atta, Gothick;
              tata, Latin. Mammas atque tatas habet Afra, Mart.] Father.
            </DictionarySense>
          </Dictionary>
          &nbsp;
          <Dictionary
            title="HUMANIST"
            headword="Humanist"
            type="n.s."
            pronounciation="ˈhjuːmənɪst"
            origin_url="http://www.dictionary.com/"
            origin="Dictionary.com"
            phonetics_url="http://www.photransedit.com/online/text2phonetics.aspx"
            phonetics="PhoTransEdit">
            <DictionarySense>
              A person devoted to or versed in the humanities.
            </DictionarySense>
            <DictionarySense>
              A person who follows a form of scientific or philosophical
              humanism.
              <q>Someone who bumps his head against walls of ignorance until
                he's knocked out but nevertheless starts over again as soon
                as possible.
              </q> <i>Georg Hopp</i>
            </DictionarySense>
          </Dictionary>
        </div>
      </div>
      );
  }
}

export default About;
// vim: set ts=2 sw=2 et: