Skip to content

Commit

Permalink
chore: fill package.json info
Browse files Browse the repository at this point in the history
  • Loading branch information
AnatoleLucet committed Jun 19, 2023
1 parent d7e7663 commit 27bb6a9
Show file tree
Hide file tree
Showing 31 changed files with 6,191 additions and 2,784 deletions.
2 changes: 1 addition & 1 deletion examples/basic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"@gmaps/reactjs": "*"
"react-gmaps": "*"
},
"devDependencies": {
"@types/react": "^18.0.28",
Expand Down
4 changes: 2 additions & 2 deletions examples/basic/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion examples/basic/src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { GMaps } from "@gmaps/reactjs";
import { GMaps } from "react-gmaps";

function App() {
return (
Expand Down
2 changes: 1 addition & 1 deletion examples/marker-animated/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"@gmaps/reactjs": "*"
"react-gmaps": "*"
},
"devDependencies": {
"@types/react": "^18.0.28",
Expand Down
4 changes: 2 additions & 2 deletions examples/marker-animated/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion examples/marker-animated/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {
GMaps,
useGMapsAnimatedMarker,
GMapsAnimatedMarker,
} from "@gmaps/reactjs";
} from "react-gmaps";

const apiKey = import.meta.env.GMAPS_API_KEY || "YOUR API KEY";
const mapID = import.meta.env.GMAPS_MAP_ID || "YOUR MAP ID";
Expand Down
2 changes: 1 addition & 1 deletion examples/marker-methods/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"@gmaps/reactjs": "*"
"react-gmaps": "*"
},
"devDependencies": {
"@types/react": "^18.0.28",
Expand Down
4 changes: 2 additions & 2 deletions examples/marker-methods/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion examples/marker-methods/src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { useEffect } from "react";
import { GMapsMarker, GMaps, useGMapsMarker } from "@gmaps/reactjs";
import { GMapsMarker, GMaps, useGMapsMarker } from "react-gmaps";

const apiKey = import.meta.env.GMAPS_API_KEY || "YOUR API KEY";
const mapID = import.meta.env.GMAPS_MAP_ID || "YOUR MAP ID";
Expand Down
2 changes: 1 addition & 1 deletion examples/marker/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"@gmaps/reactjs": "*"
"react-gmaps": "*"
},
"devDependencies": {
"@types/react": "^18.0.28",
Expand Down
4 changes: 2 additions & 2 deletions examples/marker/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion examples/marker/src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { GMapsMarker, GMaps } from "@gmaps/reactjs";
import { GMapsMarker, GMaps } from "react-gmaps";

const apiKey = import.meta.env.GMAPS_API_KEY || "YOUR API KEY";
const mapID = import.meta.env.GMAPS_MAP_ID || "YOUR MAP ID";
Expand Down
2 changes: 1 addition & 1 deletion examples/polygon-animated/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"@gmaps/reactjs": "*"
"react-gmaps": "*"
},
"devDependencies": {
"@types/react": "^18.0.28",
Expand Down
Loading

0 comments on commit 27bb6a9

Please sign in to comment.