import Image from 'next/image' import { ApplicationProps } from '../Application' import { IconLink } from '../../design/IconLink' export interface GuildsProps extends ApplicationProps {} export const Guilds: React.FC = (props) => { const { path } = props return (
{new Array(100).fill(null).map((_, index) => { return (
logo
) })}
) }