About.js
2.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
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>
<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>
<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: