import React from 'react'; import { HStack, Stack } from 'soapbox/components/ui'; import { randomIntFromInterval, generateText } from '../utils'; export default ({ limit }: { limit: number }) => { const length = randomIntFromInterval(15, 3); const acctLength = randomIntFromInterval(15, 3); return ( <> {new Array(limit).fill(undefined).map((_, idx) => (

{generateText(length)}

{generateText(acctLength)}

))} ); };