├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── App.css ├── App.test.js ├── AppEjemplo.js ├── MainApp.js ├── components ├── AccountCreation │ ├── MainContainer.jsx │ ├── Step1AccountType.jsx │ ├── Step2AccountType.jsx │ └── Step3AccountType.jsx ├── Dialogs │ └── DialogAlert.jsx ├── Navegacion │ ├── NavBar.jsx │ ├── NavBarMenu.jsx │ └── ProfileCard.jsx └── Profile │ ├── AccountStatus.jsx │ ├── BankTransfersChart.jsx │ ├── MainContainerProfile.jsx │ ├── ProfileDetail.jsx │ ├── Transactions.jsx │ └── Transferences.jsx ├── conection ├── aeditip.postman_collection.v10.json ├── aeditip.postman_environment.v10.json └── example.conection.js ├── index.css ├── index.js ├── logo.svg ├── pages ├── AccountCreation.js ├── Login.js └── Usuario.js ├── reportWebVitals.js ├── setupTests.js ├── static ├── logo_bank.png └── on_success.jpg ├── styles ├── AccountCreation.scss ├── Home.scss ├── Login.scss ├── MainStyles.css ├── NavBar.scss └── Profile.scss └── theme └── theme.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinSSJ3/ejemplo-react/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinSSJ3/ejemplo-react/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinSSJ3/ejemplo-react/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinSSJ3/ejemplo-react/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinSSJ3/ejemplo-react/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinSSJ3/ejemplo-react/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinSSJ3/ejemplo-react/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinSSJ3/ejemplo-react/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinSSJ3/ejemplo-react/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinSSJ3/ejemplo-react/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinSSJ3/ejemplo-react/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/AppEjemplo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinSSJ3/ejemplo-react/HEAD/src/AppEjemplo.js -------------------------------------------------------------------------------- /src/MainApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinSSJ3/ejemplo-react/HEAD/src/MainApp.js -------------------------------------------------------------------------------- /src/components/AccountCreation/MainContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinSSJ3/ejemplo-react/HEAD/src/components/AccountCreation/MainContainer.jsx -------------------------------------------------------------------------------- /src/components/AccountCreation/Step1AccountType.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinSSJ3/ejemplo-react/HEAD/src/components/AccountCreation/Step1AccountType.jsx -------------------------------------------------------------------------------- /src/components/AccountCreation/Step2AccountType.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinSSJ3/ejemplo-react/HEAD/src/components/AccountCreation/Step2AccountType.jsx -------------------------------------------------------------------------------- /src/components/AccountCreation/Step3AccountType.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinSSJ3/ejemplo-react/HEAD/src/components/AccountCreation/Step3AccountType.jsx -------------------------------------------------------------------------------- /src/components/Dialogs/DialogAlert.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinSSJ3/ejemplo-react/HEAD/src/components/Dialogs/DialogAlert.jsx -------------------------------------------------------------------------------- /src/components/Navegacion/NavBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinSSJ3/ejemplo-react/HEAD/src/components/Navegacion/NavBar.jsx -------------------------------------------------------------------------------- /src/components/Navegacion/NavBarMenu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinSSJ3/ejemplo-react/HEAD/src/components/Navegacion/NavBarMenu.jsx -------------------------------------------------------------------------------- /src/components/Navegacion/ProfileCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinSSJ3/ejemplo-react/HEAD/src/components/Navegacion/ProfileCard.jsx -------------------------------------------------------------------------------- /src/components/Profile/AccountStatus.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinSSJ3/ejemplo-react/HEAD/src/components/Profile/AccountStatus.jsx -------------------------------------------------------------------------------- /src/components/Profile/BankTransfersChart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinSSJ3/ejemplo-react/HEAD/src/components/Profile/BankTransfersChart.jsx -------------------------------------------------------------------------------- /src/components/Profile/MainContainerProfile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinSSJ3/ejemplo-react/HEAD/src/components/Profile/MainContainerProfile.jsx -------------------------------------------------------------------------------- /src/components/Profile/ProfileDetail.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinSSJ3/ejemplo-react/HEAD/src/components/Profile/ProfileDetail.jsx -------------------------------------------------------------------------------- /src/components/Profile/Transactions.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinSSJ3/ejemplo-react/HEAD/src/components/Profile/Transactions.jsx -------------------------------------------------------------------------------- /src/components/Profile/Transferences.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinSSJ3/ejemplo-react/HEAD/src/components/Profile/Transferences.jsx -------------------------------------------------------------------------------- /src/conection/aeditip.postman_collection.v10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinSSJ3/ejemplo-react/HEAD/src/conection/aeditip.postman_collection.v10.json -------------------------------------------------------------------------------- /src/conection/aeditip.postman_environment.v10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinSSJ3/ejemplo-react/HEAD/src/conection/aeditip.postman_environment.v10.json -------------------------------------------------------------------------------- /src/conection/example.conection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinSSJ3/ejemplo-react/HEAD/src/conection/example.conection.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinSSJ3/ejemplo-react/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinSSJ3/ejemplo-react/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinSSJ3/ejemplo-react/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/pages/AccountCreation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinSSJ3/ejemplo-react/HEAD/src/pages/AccountCreation.js -------------------------------------------------------------------------------- /src/pages/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinSSJ3/ejemplo-react/HEAD/src/pages/Login.js -------------------------------------------------------------------------------- /src/pages/Usuario.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinSSJ3/ejemplo-react/HEAD/src/pages/Usuario.js -------------------------------------------------------------------------------- /src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinSSJ3/ejemplo-react/HEAD/src/reportWebVitals.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinSSJ3/ejemplo-react/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /src/static/logo_bank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinSSJ3/ejemplo-react/HEAD/src/static/logo_bank.png -------------------------------------------------------------------------------- /src/static/on_success.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinSSJ3/ejemplo-react/HEAD/src/static/on_success.jpg -------------------------------------------------------------------------------- /src/styles/AccountCreation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinSSJ3/ejemplo-react/HEAD/src/styles/AccountCreation.scss -------------------------------------------------------------------------------- /src/styles/Home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinSSJ3/ejemplo-react/HEAD/src/styles/Home.scss -------------------------------------------------------------------------------- /src/styles/Login.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinSSJ3/ejemplo-react/HEAD/src/styles/Login.scss -------------------------------------------------------------------------------- /src/styles/MainStyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinSSJ3/ejemplo-react/HEAD/src/styles/MainStyles.css -------------------------------------------------------------------------------- /src/styles/NavBar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinSSJ3/ejemplo-react/HEAD/src/styles/NavBar.scss -------------------------------------------------------------------------------- /src/styles/Profile.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinSSJ3/ejemplo-react/HEAD/src/styles/Profile.scss -------------------------------------------------------------------------------- /src/theme/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JinSSJ3/ejemplo-react/HEAD/src/theme/theme.js --------------------------------------------------------------------------------