-
-
Notifications
You must be signed in to change notification settings - Fork 455
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added opencollective contribution link
- Loading branch information
1 parent
8759a07
commit dc6f2e9
Showing
5 changed files
with
16 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 6 additions & 4 deletions
10
packages/react-google-maps-api-gatsby-example/src/components/info.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,23 @@ | ||
import * as React from 'react' | ||
import { memo } from 'react' | ||
import info from '../img/info-circle-solid.svg' | ||
|
||
function Info() { | ||
return ( | ||
<div className='alert alert-info mb-4' role='alert'> | ||
<img src={info} className='icon' alt='Info' /> | ||
Please read the{' '} | ||
Sorry, but {' '} | ||
<a | ||
href='https://react-google-maps-api-docs.netlify.app/' | ||
target='_blank' | ||
rel='noopener noreferrer' | ||
> | ||
documentation | ||
</a>{' '} | ||
on how to implement the API. | ||
on how to implement the API is broken and outdated. Help Required | ||
<br /> | ||
You can donate or became a sponsor <a href="https://opencollective.com/react-google-maps-api#category-CONTRIBUTE" rel='noopener noreferrer'>here</a> | ||
</div> | ||
) | ||
} | ||
|
||
export default React.memo(Info) | ||
export default memo(Info) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters