├── .editorconfig ├── .gitignore ├── .prettierignore ├── LICENSE.md ├── README.md ├── package.json ├── prettier.config.js ├── rollup.config.js └── src └── react-wrapper.jsx /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoelace-style/react-wrapper/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | .github 2 | dist 3 | node_modules 4 | package-lock.json 5 | README.md 6 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoelace-style/react-wrapper/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoelace-style/react-wrapper/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoelace-style/react-wrapper/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoelace-style/react-wrapper/HEAD/prettier.config.js -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoelace-style/react-wrapper/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/react-wrapper.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoelace-style/react-wrapper/HEAD/src/react-wrapper.jsx --------------------------------------------------------------------------------