Fix: portofolio: alert hapus porto Fix: profile create hapus text input alamat & edit ganti select jenis kelamin Fix: menu forum Fix: button porto # No Issue
22 lines
664 B
TypeScript
22 lines
664 B
TypeScript
import { Spacing, StackCustom } from "@/components";
|
|
import Portofolio_BusinessLocation from "./BusinessLocationSection";
|
|
import Portofolio_Data from "./DataPortofolio";
|
|
import Portofolio_SocialMediaSection from "./SocialMediaSection";
|
|
import Portofolio_ButtonDelete from "./ButtonDelete";
|
|
|
|
export default function PorfofolioSection({
|
|
setShowDeleteAlert,
|
|
}: {
|
|
setShowDeleteAlert: (value: boolean) => void;
|
|
}) {
|
|
return (
|
|
<StackCustom>
|
|
<Portofolio_Data />
|
|
<Portofolio_BusinessLocation />
|
|
<Portofolio_SocialMediaSection />
|
|
<Portofolio_ButtonDelete setShowDeleteAlert={setShowDeleteAlert}/>
|
|
<Spacing/>
|
|
</StackCustom>
|
|
);
|
|
}
|