├── .gitignore ├── README.md ├── manifest.yml ├── package.json ├── src └── index.js └── static ├── main-app ├── .env ├── .gitignore ├── package-lock.json ├── package.json ├── public │ └── index.html └── src │ ├── App.js │ ├── index.css │ ├── index.js │ └── utils │ └── checkResponse.js └── wrapper-app ├── .env ├── .gitignore ├── package.json ├── public └── index.html └── src ├── App.js └── index.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakarora1208/sample-crud-forge-app/HEAD/README.md -------------------------------------------------------------------------------- /manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakarora1208/sample-crud-forge-app/HEAD/manifest.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakarora1208/sample-crud-forge-app/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakarora1208/sample-crud-forge-app/HEAD/src/index.js -------------------------------------------------------------------------------- /static/main-app/.env: -------------------------------------------------------------------------------- 1 | SKIP_PREFLIGHT_CHECK=true 2 | -------------------------------------------------------------------------------- /static/main-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakarora1208/sample-crud-forge-app/HEAD/static/main-app/.gitignore -------------------------------------------------------------------------------- /static/main-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakarora1208/sample-crud-forge-app/HEAD/static/main-app/package-lock.json -------------------------------------------------------------------------------- /static/main-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakarora1208/sample-crud-forge-app/HEAD/static/main-app/package.json -------------------------------------------------------------------------------- /static/main-app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakarora1208/sample-crud-forge-app/HEAD/static/main-app/public/index.html -------------------------------------------------------------------------------- /static/main-app/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakarora1208/sample-crud-forge-app/HEAD/static/main-app/src/App.js -------------------------------------------------------------------------------- /static/main-app/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakarora1208/sample-crud-forge-app/HEAD/static/main-app/src/index.css -------------------------------------------------------------------------------- /static/main-app/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakarora1208/sample-crud-forge-app/HEAD/static/main-app/src/index.js -------------------------------------------------------------------------------- /static/main-app/src/utils/checkResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakarora1208/sample-crud-forge-app/HEAD/static/main-app/src/utils/checkResponse.js -------------------------------------------------------------------------------- /static/wrapper-app/.env: -------------------------------------------------------------------------------- 1 | SKIP_PREFLIGHT_CHECK=true 2 | -------------------------------------------------------------------------------- /static/wrapper-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakarora1208/sample-crud-forge-app/HEAD/static/wrapper-app/.gitignore -------------------------------------------------------------------------------- /static/wrapper-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakarora1208/sample-crud-forge-app/HEAD/static/wrapper-app/package.json -------------------------------------------------------------------------------- /static/wrapper-app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakarora1208/sample-crud-forge-app/HEAD/static/wrapper-app/public/index.html -------------------------------------------------------------------------------- /static/wrapper-app/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakarora1208/sample-crud-forge-app/HEAD/static/wrapper-app/src/App.js -------------------------------------------------------------------------------- /static/wrapper-app/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakarora1208/sample-crud-forge-app/HEAD/static/wrapper-app/src/index.js --------------------------------------------------------------------------------