-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsocratic-method.jsx
More file actions
24 lines (21 loc) · 926 Bytes
/
socratic-method.jsx
File metadata and controls
24 lines (21 loc) · 926 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import React from 'react';
export default function SocraticMethod() {
return (
<div className="space-y-6 font-mono text-sm leading-relaxed">
<p>
The <strong className="text-current">Socratic Method</strong> (or
Elenchus) is a form of cooperative argumentative dialogue between
individuals, based on asking and answering questions to stimulate
critical thinking and to draw out ideas and underlying presumptions.
</p>
<div className="border-l-2 border-emerald-500/50 pl-4 py-1 italic opacity-70 text-xs">
"I cannot teach anybody anything. I can only make them think."
</div>
<p>
It is a dialectical method, involving a discussion in which the defense
of one point of view is questioned; one participant may lead another to
contradict themselves in some way, thus weakening the defender's point.
</p>
</div>
);
}