├── .gitignore ├── README.md ├── package.json ├── plugin.js └── templates └── ElementsExample.js.ejs /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | generated 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/ignite-elements/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/ignite-elements/HEAD/package.json -------------------------------------------------------------------------------- /plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/ignite-elements/HEAD/plugin.js -------------------------------------------------------------------------------- /templates/ElementsExample.js.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/ignite-elements/HEAD/templates/ElementsExample.js.ejs --------------------------------------------------------------------------------