import React from 'react'; export function PassCodeViewLoader({ length }: { length: number }) { return (
{Array.from({ length }).map((_, index) => (
))}
); }