stress.mdx 514 B

12345678910111213141516171819202122232425
  1. ---
  2. title: Stress
  3. ---
  4. import SnowEditor from '../../src/components/standalone/SnowEditor';
  5. <div style={{ margin: '50px auto', maxWidth: 720 }}>
  6. <SnowEditor>
  7. {
  8. new Array(200).fill(0).map((_, index) => {
  9. return <>
  10. <h2>Heading <i>{index}</i></h2>
  11. <p>List items:</p>
  12. <ul>
  13. {
  14. new Array(20).fill(0).map((_, index) => {
  15. return <li>List <strong>item</strong> {index}</li>
  16. })
  17. }
  18. </ul>
  19. </>
  20. })
  21. }
  22. </SnowEditor>
  23. </div>