├── .editorconfig ├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .npmignore ├── .prettierrc ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── package.json ├── rollup.config.js ├── src ├── HubspotProvider.tsx ├── hubspot-form-locale.enum.ts ├── index.ts └── useScript.ts ├── tsconfig.json ├── tsconfig.module.json ├── tslint.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronhayes/react-use-hubspot-form/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronhayes/react-use-hubspot-form/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronhayes/react-use-hubspot-form/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronhayes/react-use-hubspot-form/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronhayes/react-use-hubspot-form/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronhayes/react-use-hubspot-form/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronhayes/react-use-hubspot-form/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronhayes/react-use-hubspot-form/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronhayes/react-use-hubspot-form/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronhayes/react-use-hubspot-form/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronhayes/react-use-hubspot-form/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronhayes/react-use-hubspot-form/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronhayes/react-use-hubspot-form/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/HubspotProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronhayes/react-use-hubspot-form/HEAD/src/HubspotProvider.tsx -------------------------------------------------------------------------------- /src/hubspot-form-locale.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronhayes/react-use-hubspot-form/HEAD/src/hubspot-form-locale.enum.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronhayes/react-use-hubspot-form/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/useScript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronhayes/react-use-hubspot-form/HEAD/src/useScript.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronhayes/react-use-hubspot-form/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronhayes/react-use-hubspot-form/HEAD/tsconfig.module.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronhayes/react-use-hubspot-form/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronhayes/react-use-hubspot-form/HEAD/yarn.lock --------------------------------------------------------------------------------