File size: 257 Bytes
877add7
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
export default function ExplanationPanel({ explanation }: { explanation: Record<string, unknown> | null }) {
  return (
    <section className="panel">
      <h3>Explanation</h3>
      <pre>{JSON.stringify(explanation, null, 2)}</pre>
    </section>
  );
}