Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

README.md

react-static-plugin-react-location

A React-Static plugin that adds support for react-location

Installation

  • Install this plugin and peer dependencies:
$ yarn add react-static-plugin-react-location react-location
  • Add the plugin to your static.config.js:
export default {
  plugins: ['react-static-plugin-react-location'],
}
export default {
  plugins: [
    [
      'react-static-plugin-react-location',
      {
        LocationProviderProps: {
          // These props will be passed to the underlying `LocationProviderProps` component
        },
      },
    ],
  ],
}