deskripsi: - fix page maps - fix ViewWrapper : props styles di tambah # No Issue
10 lines
226 B
TypeScript
10 lines
226 B
TypeScript
import { MapCustom, ViewWrapper } from "@/components";
|
|
|
|
export default function Maps() {
|
|
return (
|
|
<ViewWrapper style={{ paddingInline: 0, paddingBlock: 0 }}>
|
|
<MapCustom height={"100%"} />
|
|
</ViewWrapper>
|
|
);
|
|
}
|