├── .gitignore ├── README.md ├── json-server.json ├── package.json ├── public ├── favicon.ico ├── index.html └── manifest.json ├── server └── db.json ├── src ├── App.css ├── App.test.tsx ├── App.tsx ├── components │ ├── Home.tsx │ └── customer │ │ ├── Create.tsx │ │ └── Edit.tsx ├── index.css ├── index.tsx ├── logo.svg ├── react-app-env.d.ts └── serviceWorker.ts ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yemiwebby/typescript-react-customer-app/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yemiwebby/typescript-react-customer-app/HEAD/README.md -------------------------------------------------------------------------------- /json-server.json: -------------------------------------------------------------------------------- 1 | { 2 | "port": 5000 3 | } -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yemiwebby/typescript-react-customer-app/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yemiwebby/typescript-react-customer-app/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yemiwebby/typescript-react-customer-app/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yemiwebby/typescript-react-customer-app/HEAD/public/manifest.json -------------------------------------------------------------------------------- /server/db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yemiwebby/typescript-react-customer-app/HEAD/server/db.json -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yemiwebby/typescript-react-customer-app/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yemiwebby/typescript-react-customer-app/HEAD/src/App.test.tsx -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yemiwebby/typescript-react-customer-app/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/components/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yemiwebby/typescript-react-customer-app/HEAD/src/components/Home.tsx -------------------------------------------------------------------------------- /src/components/customer/Create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yemiwebby/typescript-react-customer-app/HEAD/src/components/customer/Create.tsx -------------------------------------------------------------------------------- /src/components/customer/Edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yemiwebby/typescript-react-customer-app/HEAD/src/components/customer/Edit.tsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yemiwebby/typescript-react-customer-app/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yemiwebby/typescript-react-customer-app/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yemiwebby/typescript-react-customer-app/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/serviceWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yemiwebby/typescript-react-customer-app/HEAD/src/serviceWorker.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yemiwebby/typescript-react-customer-app/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yemiwebby/typescript-react-customer-app/HEAD/yarn.lock --------------------------------------------------------------------------------