let result = for(var i = 0; i < 5; i++){
<p style={}>
Привет
</p>
}
function App() {
const items = Array.from({ length: 5 }, (_, i) => (
<p style={{ 'padding-left': `${i * 10}px` }}>
{Array.from(
{ length: i + 1 },
(_, j) => String.fromCharCode(j + 65)
).join('')}
</p>
));
return <div>{items}</div>;
}