[ci] format

This commit is contained in:
bluwy 2023-08-25 13:02:36 +00:00 committed by astrobot-houston
parent 0ae3b7a7ba
commit 6606245b35

View file

@ -27,10 +27,14 @@ const content = "${loremIpsum}"
<body> <body>
<h1>Astro</h1> <h1>Astro</h1>
<div> <div>
${Array.from({ length: 100 }).map(() => '<p>{content}</p>').join('\n')} ${Array.from({ length: 100 })
.map(() => '<p>{content}</p>')
.join('\n')}
</div> </div>
<div> <div>
${Array.from({ length: 50 }).map((_, i) => '<Paragraph num={' + i + '} str={content} />').join('\n')} ${Array.from({ length: 50 })
.map((_, i) => '<Paragraph num={' + i + '} str={content} />')
.join('\n')}
</div> </div>
</body> </body>
</html>`, </html>`,