html pre tag

HTML
The <pre> tag defines preformatted text.

Text in a <pre> element is displayed in a fixed-width font (usually Courier), and it preserves both spaces and line breaks.

Example:
<pre>
Hello greppers,    ankur
here hope you   all
are enjoying        the 
coding.
</pre><Card>
  <CardHeader title="Output" />
  <CardContent>
    <pre style={{ backgroundColor: "white" }}>{JSON.stringify(values, null, 2)}</pre>
  </CardContent>
</Card>
Source

Also in HTML: