├── .gitignore ├── LICENSE ├── README.md ├── images.d.ts ├── package.json ├── public ├── favicon.ico ├── index.html └── manifest.json ├── src ├── components │ ├── JsonToTable │ │ ├── JsonToTable.scss │ │ ├── JsonToTable.tsx │ │ ├── JsonToTableUtils.test.ts │ │ ├── JsonToTableUtils.ts │ │ ├── README.md │ │ └── index.ts │ ├── index.css │ ├── index.scss │ └── index.tsx ├── registerServiceWorker.ts └── setupTests.ts ├── tsconfig.json ├── tsconfig.prod.json ├── tsconfig.test.json └── tslint.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thehyve/react-json-to-table/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thehyve/react-json-to-table/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thehyve/react-json-to-table/HEAD/README.md -------------------------------------------------------------------------------- /images.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thehyve/react-json-to-table/HEAD/images.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thehyve/react-json-to-table/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thehyve/react-json-to-table/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thehyve/react-json-to-table/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thehyve/react-json-to-table/HEAD/public/manifest.json -------------------------------------------------------------------------------- /src/components/JsonToTable/JsonToTable.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thehyve/react-json-to-table/HEAD/src/components/JsonToTable/JsonToTable.scss -------------------------------------------------------------------------------- /src/components/JsonToTable/JsonToTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thehyve/react-json-to-table/HEAD/src/components/JsonToTable/JsonToTable.tsx -------------------------------------------------------------------------------- /src/components/JsonToTable/JsonToTableUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thehyve/react-json-to-table/HEAD/src/components/JsonToTable/JsonToTableUtils.test.ts -------------------------------------------------------------------------------- /src/components/JsonToTable/JsonToTableUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thehyve/react-json-to-table/HEAD/src/components/JsonToTable/JsonToTableUtils.ts -------------------------------------------------------------------------------- /src/components/JsonToTable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thehyve/react-json-to-table/HEAD/src/components/JsonToTable/README.md -------------------------------------------------------------------------------- /src/components/JsonToTable/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './JsonToTable'; 2 | -------------------------------------------------------------------------------- /src/components/index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/index.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thehyve/react-json-to-table/HEAD/src/components/index.tsx -------------------------------------------------------------------------------- /src/registerServiceWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thehyve/react-json-to-table/HEAD/src/registerServiceWorker.ts -------------------------------------------------------------------------------- /src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thehyve/react-json-to-table/HEAD/src/setupTests.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thehyve/react-json-to-table/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.prod.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./tsconfig.json" 3 | } -------------------------------------------------------------------------------- /tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thehyve/react-json-to-table/HEAD/tsconfig.test.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thehyve/react-json-to-table/HEAD/tslint.json --------------------------------------------------------------------------------