import React from 'react'; export function LoadingPlaceholder() { return (
{[...Array(2)].map((_, index) => (
))}
); }