Prefoe previo para PHP
function pre($args=null) {
echo '<pre>';
print_r($args);
echo '</pre>';
}
Victorious Vole
function pre($args=null) {
echo '<pre>';
print_r($args);
echo '</pre>';
}
Array
(
[0] => 1
[1] => 2
[2] => 3
[3] => 4
)
<Card>
<CardHeader title="Output" />
<CardContent>
<pre style={{ backgroundColor: "white" }}>{JSON.stringify(values, null, 2)}</pre>
</CardContent>
</Card>