Skip to content

Commit d49bec4

Browse files
committed
Fix acorn parse error by adding missing semicolons and slash to self-closing-tag.
1 parent e094002 commit d49bec4

File tree

1 file changed

+3
-3
lines changed
  • packages/react-google-maps-api/src/components/drawing

1 file changed

+3
-3
lines changed

packages/react-google-maps-api/src/components/drawing/Marker.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ const ScriptLoaded = require("../../docs/ScriptLoaded").default;
109109
const mapContainerStyle = {
110110
height: "400px",
111111
width: "800px"
112-
}
112+
};
113113

114114
const centers = [{
115115
lat: 37.772,
@@ -122,10 +122,10 @@ const SvgCircleMarker = () => {
122122
/* Your component logic here */
123123
return (
124124
<svg viewBox="0 0 102 102">
125-
<circle cx="51" cy="51" r="50" fill="powderblue" stroke="#333">
125+
<circle cx="51" cy="51" r="50" fill="powderblue" stroke="#333" />
126126
</svg>
127127
);
128-
}
128+
};
129129

130130
const markerSvgString = encodeURIComponent(
131131
renderToStaticMarkup(<SvgCircleMarker />)

0 commit comments

Comments
 (0)