├── .eslintrc.json ├── .gitignore ├── .prettierrc ├── README.md ├── components ├── distance.tsx ├── map.tsx └── places.tsx ├── env.d.ts ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages ├── _app.tsx └── index.tsx ├── public └── favicon.ico ├── styles └── globals.css ├── tsconfig.json ├── tsconfig.tsbuildinfo └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leighhalliday/google-maps-react-crash-course/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Google Maps in React Crash Course 2 | -------------------------------------------------------------------------------- /components/distance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leighhalliday/google-maps-react-crash-course/HEAD/components/distance.tsx -------------------------------------------------------------------------------- /components/map.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leighhalliday/google-maps-react-crash-course/HEAD/components/map.tsx -------------------------------------------------------------------------------- /components/places.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leighhalliday/google-maps-react-crash-course/HEAD/components/places.tsx -------------------------------------------------------------------------------- /env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leighhalliday/google-maps-react-crash-course/HEAD/env.d.ts -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leighhalliday/google-maps-react-crash-course/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | reactStrictMode: true, 3 | } 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leighhalliday/google-maps-react-crash-course/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leighhalliday/google-maps-react-crash-course/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leighhalliday/google-maps-react-crash-course/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leighhalliday/google-maps-react-crash-course/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leighhalliday/google-maps-react-crash-course/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leighhalliday/google-maps-react-crash-course/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.tsbuildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leighhalliday/google-maps-react-crash-course/HEAD/tsconfig.tsbuildinfo -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leighhalliday/google-maps-react-crash-course/HEAD/yarn.lock --------------------------------------------------------------------------------