├── .gitignore ├── LICENSE ├── README.md ├── mgr_wppwr_plugin ├── admin │ ├── admin.php │ └── index.php ├── common │ ├── admin_enqueue_assets.php │ ├── enqueue_assets.php │ └── index.php ├── index.php ├── mgr_wppwr_plugin.php └── shortcode │ ├── active-react.php │ └── index.php ├── mgr_wppwr_plugin_local ├── admin │ ├── admin.php │ └── index.php ├── common │ ├── admin_enqueue_assets.php │ ├── enqueue_assets.php │ └── index.php ├── index.php ├── mgr_wppwr_plugin.php └── shortcode │ ├── active-react.php │ └── index.php └── react ├── .babelrc.json ├── .eslintrc.json ├── .gitignore ├── .prettierrc.json ├── LICENSE ├── README.md ├── config ├── paths.js ├── webpack.common.js ├── webpack.dev.js ├── webpack.prod.js └── webpack.wp.prod.js ├── package-lock.json ├── package.json ├── postcss.config.js ├── public └── example.jpg └── src ├── admin-template.html ├── admin.js ├── fonts └── Inter.ttf ├── images ├── favicon.png └── webpack-logo.svg ├── index.js ├── styles ├── _scaffolding.scss ├── _variables.scss └── index.scss └── template.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magicianred/wp-plugin-webpack-react-basic/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magicianred/wp-plugin-webpack-react-basic/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magicianred/wp-plugin-webpack-react-basic/HEAD/README.md -------------------------------------------------------------------------------- /mgr_wppwr_plugin/admin/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magicianred/wp-plugin-webpack-react-basic/HEAD/mgr_wppwr_plugin/admin/admin.php -------------------------------------------------------------------------------- /mgr_wppwr_plugin/admin/index.php: -------------------------------------------------------------------------------- 1 |