Event: Add file: - contibution with id - list of participan - publish - BoxDetailPublishSection - BoxPublishSection - menuDrawerPublish Fix: Event: - layout dan index\ # No Issue
18 lines
410 B
TypeScript
18 lines
410 B
TypeScript
import {
|
|
AvatarUsernameAndOtherComponent,
|
|
BaseBox,
|
|
ViewWrapper,
|
|
} from "@/components";
|
|
|
|
export default function EventListOfParticipants() {
|
|
return (
|
|
<ViewWrapper>
|
|
{Array.from({ length: 10 }).map((_, index) => (
|
|
<BaseBox key={index} paddingBlock={0}>
|
|
<AvatarUsernameAndOtherComponent avatarHref={`/profile/${index}`} />
|
|
</BaseBox>
|
|
))}
|
|
</ViewWrapper>
|
|
);
|
|
}
|