diff options
Diffstat (limited to 'src/views/Quote.js')
| -rw-r--r-- | src/views/Quote.js | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/views/Quote.js b/src/views/Quote.js new file mode 100644 index 0000000..00f8ca3 --- /dev/null +++ b/src/views/Quote.js @@ -0,0 +1,21 @@ +/** + * Adorno quote + */ + +import React from "react"; + +export default function Quote({ visible }) { + return ( + <div className={visible ? "quote visible" : "quote"}> + <div>As a constellation,</div> + <div>theoretical thought circles the concept</div> + <div>it would like to unseal, hoping that it</div> + <div>may fly open like the lock of a</div> + <div>well-guarded safe-deposit box:</div> + <div>in response, not to a single key or</div> + <div>a single number, but to a</div> + <div>combination of numbers.</div> + <div>Theodor W. Adorno</div> + </div> + ); +} |
