├── .babelrc ├── .gitignore ├── README.md ├── package.json ├── plugin_options.php ├── src ├── components │ ├── App.js │ └── App.scss └── index.js ├── webpack.config.js └── wp-react-plugin.php /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgwyer/wp-react-plugin/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgwyer/wp-react-plugin/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgwyer/wp-react-plugin/HEAD/package.json -------------------------------------------------------------------------------- /plugin_options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgwyer/wp-react-plugin/HEAD/plugin_options.php -------------------------------------------------------------------------------- /src/components/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgwyer/wp-react-plugin/HEAD/src/components/App.js -------------------------------------------------------------------------------- /src/components/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgwyer/wp-react-plugin/HEAD/src/components/App.scss -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgwyer/wp-react-plugin/HEAD/src/index.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgwyer/wp-react-plugin/HEAD/webpack.config.js -------------------------------------------------------------------------------- /wp-react-plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dgwyer/wp-react-plugin/HEAD/wp-react-plugin.php --------------------------------------------------------------------------------