Feature: Add : - Collaboration/BoxDetailSection - detail-participant - /detail-project-main Fix: - participant # No Issue
14 lines
275 B
TypeScript
14 lines
275 B
TypeScript
import { TextCustom, ViewWrapper } from "@/components";
|
|
|
|
export default function CollaborationDetailProjectMain() {
|
|
return (
|
|
<>
|
|
<ViewWrapper>
|
|
<TextCustom bold size="large">
|
|
Detail Proyek
|
|
</TextCustom>
|
|
</ViewWrapper>
|
|
</>
|
|
);
|
|
}
|