react google sheets
Simplely Add Google Sheets API to your react app
Quickstart
First, install the library:
npm install --react-google-sheets
or
yarn add react-google-sheets
Second, Turn on the Google Sheets API:
-
Use this wizard to create or select a project in the Google Developers Console and automatically turn on the API. Click Continue, then Go to credentials.
-
On the Add credentials to your project page, click the Cancel button.
-
At the top of the page, select the OAuth consent screen tab. Select an Email address, enter a Product name if not already set, and click the Save button.
-
Select the Credentials tab, click the Create credentials button and select OAuth client ID.
-
Select the application type Other, enter the name "React Google Sheets Quickstart", and click the Create button.
Finally, Use the library:
; { superprops thisstate = sheetLoaded: false } { return <ReactGoogleSheets clientId=YOUR_CLIENT_ID apiKey=YOUR_API_KEY spreadsheetId=YOUR_SPREADSHEET_ID afterLoading= this > thisstatesheetLoaded ? <div> /* Access Data */ console /* Update Data */ <button onClick= { thisprops; }>update cell!</button> </div> : 'loading...' </ReactGoogleSheets> } ;
That's It!