deskripsi:
- fix page maps
- fix ViewWrapper : props styles di tambah
# No Issue
This commit is contained in:
2025-07-10 16:57:49 +08:00
parent c5798b3127
commit 6913e9e4b5
4 changed files with 18 additions and 14 deletions

View File

@@ -1,9 +1,9 @@
import { TextCustom, ViewWrapper } from "@/components";
import { MapCustom, ViewWrapper } from "@/components";
export default function Maps() {
return (
<ViewWrapper>
<TextCustom>Maps</TextCustom>
</ViewWrapper>
)
}
return (
<ViewWrapper style={{ paddingInline: 0, paddingBlock: 0 }}>
<MapCustom height={"100%"} />
</ViewWrapper>
);
}