Skip to content

Commit dc6f2e9

Browse files
committedMay 5, 2022
added opencollective contribution link
1 parent 8759a07 commit dc6f2e9

File tree

5 files changed

+16
-7
lines changed

5 files changed

+16
-7
lines changed
 

‎CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ Inside root folder you will find packages:
2323
4. gatsby-example [https://github.com/gatsbyjs/gatsby/issues](https://github.com/gatsbyjs/gatsby/issues)
2424
5. storybook [https://github.com/storybooks/storybook](https://github.com/storybooks/storybook) - for visual testing of our components
2525

26-
Current version of TSDX has issue on running with node.js above 13.3.0
26+
You can donate or became a sponsor [https://opencollective.com/react-google-maps-api#category-CONTRIBUTE](https://opencollective.com/react-google-maps-api#category-CONTRIBUTE)

‎ISSUE_TEMPLATE.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Issue template
22

3+
You can donate or became a sponsor [https://opencollective.com/react-google-maps-api#category-CONTRIBUTE](https://opencollective.com/react-google-maps-api#category-CONTRIBUTE)
4+
35
If you want to ask question, please ask it in Github Discussions, [Spectrum.chat](https://spectrum.chat/react-google-maps) or [Slack channel](https://join.slack.com/t/react-google-maps-api/shared_invite/enQtODc5ODU1NTY5MzQ4LTBiNTYzZmY1YmVjYzJhZThkMGU0YzUwZjJkNGJmYjk4YjQyYjZhMDk2YThlZGEzNDc0M2RhNjBmMWE4ZTJiMjQ)
46

57
Please do not post unformatted code into issues, and please do not ask questions. Only real issues, PR's or feature requests are allowed. Minimal reproduction in codesandbox.io is required.

‎README.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
# @react-google-maps organization root
66

7+
You can donate or became a sponsor [https://opencollective.com/react-google-maps-api#category-CONTRIBUTE](https://opencollective.com/react-google-maps-api#category-CONTRIBUTE)
8+
79
[![npm package](https://img.shields.io/npm/v/@react-google-maps/api)](https://www.npmjs.com/package/@react-google-maps/api)
810
[![npm downloads](https://img.shields.io/npm/dt/@react-google-maps/api)](https://www.npmjs.com/package/@react-google-maps/api)
911
[![npm bundle size](https://img.shields.io/bundlephobia/min/@react-google-maps/api)](https://www.npmjs.com/package/@react-google-maps/api)
@@ -31,10 +33,9 @@ Join our [Slack channel](https://join.slack.com/t/react-google-maps-api/shared_i
3133
- node
3234
- yarn
3335

34-
3536
### To develop localy
3637

37-
Fork original repo at https://github.com/JustFly1984/react-google-maps-api. Clone your fork to local directory of your choice, install dependencies, set up your API Key, and start storybook server. Following commands should do the job:
38+
Fork original repo at <https://github.com/JustFly1984/react-google-maps-api>. Clone your fork to local directory of your choice, install dependencies, set up your API Key, and start storybook server. Following commands should do the job:
3839

3940
- `git clone https://github.com/YOUR_USER_NAME/react-google-maps-api.git` - clone your fork
4041
`
@@ -48,3 +49,5 @@ Eny changes you make to src folders of contained packages, should reflect in sot
4849
### To contribute
4950

5051
Create a feature/fix branch on your own fork and make pull request towards develop branch of the original repo.
52+
53+
You can donate or became a sponsor [https://opencollective.com/react-google-maps-api#category-CONTRIBUTE](https://opencollective.com/react-google-maps-api#category-CONTRIBUTE)
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,23 @@
1-
import * as React from 'react'
1+
import { memo } from 'react'
22
import info from '../img/info-circle-solid.svg'
33

44
function Info() {
55
return (
66
<div className='alert alert-info mb-4' role='alert'>
77
<img src={info} className='icon' alt='Info' />
8-
Please read the{' '}
8+
Sorry, but {' '}
99
<a
1010
href='https://react-google-maps-api-docs.netlify.app/'
1111
target='_blank'
1212
rel='noopener noreferrer'
1313
>
1414
documentation
1515
</a>{' '}
16-
on how to implement the API.
16+
on how to implement the API is broken and outdated. Help Required
17+
<br />
18+
You can donate or became a sponsor <a href="https://opencollective.com/react-google-maps-api#category-CONTRIBUTE" rel='noopener noreferrer'>here</a>
1719
</div>
1820
)
1921
}
2022

21-
export default React.memo(Info)
23+
export default memo(Info)

‎packages/react-google-maps-api/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010

1111
@react-google-maps/api
1212

13+
You can donate or became a sponsor of the project here: [https://opencollective.com/react-google-maps-api#category-CONTRIBUTE](https://opencollective.com/react-google-maps-api#category-CONTRIBUTE)
14+
1315
> This library requires React v16.6 or later. To use the latest features (including hooks) requires React v16.8+. If you need support for earlier versions of React, you should check out [react-google-maps](https://github.com/tomchentw/react-google-maps)
1416
1517
This is complete re-write of the (sadly unmaintained) `react-google-maps` library. We thank [tomchentw](https://github.com/tomchentw/) for his great work that made possible.

0 commit comments

Comments
 (0)
Please sign in to comment.