├── example
├── canister_ids.json
├── .env.local.template
├── src
│ ├── react-app-env.d.ts
│ ├── ui-lib
│ │ ├── molecules
│ │ │ ├── dfinity_icon.png
│ │ │ ├── modal
│ │ │ │ ├── header.tsx
│ │ │ │ ├── close.svg
│ │ │ │ └── index.tsx
│ │ │ ├── internet-identity-auth
│ │ │ │ └── index.tsx
│ │ │ └── login.tsx
│ │ ├── atoms
│ │ │ ├── button
│ │ │ │ ├── close.tsx
│ │ │ │ └── index.tsx
│ │ │ ├── loader
│ │ │ │ └── index.tsx
│ │ │ └── headlines
│ │ │ │ └── index.tsx
│ │ └── organisms
│ │ │ └── navigation
│ │ │ └── index.tsx
│ ├── setupTests.ts
│ ├── App.test.tsx
│ ├── reportWebVitals.ts
│ ├── ic-utils
│ │ ├── create-actor.ts
│ │ └── profile
│ │ │ └── index.ts
│ └── components
│ │ └── auth-component.tsx
├── public
│ ├── robots.txt
│ ├── favicon.ico
│ ├── manifest.json
│ └── icons
│ │ └── close.svg
├── .babelrc
├── postcss.config.js
├── docker-compose.yml
├── scripts
│ ├── dfx_run.sh
│ ├── provision-linux.sh
│ ├── entrypoint.sh
│ └── dfxctl.sh
├── jest.setup.ts
├── next-env.d.ts
├── pages
│ ├── _app.tsx
│ └── index.tsx
├── .gitignore
├── dfx.json
├── ic
│ └── profile
│ │ └── main.mo
├── Dockerfile
├── makefile
├── tsconfig.json
├── tailwind.config.js
├── patches
│ └── @dfinity+agent+0.10.0.patch
├── package.json
├── DOCKER_README.md
├── README.md
├── next.config.js
└── jest.config.js
├── .travis.yml
├── src
├── react-app-env.d.ts
├── .eslintrc
├── setupTests.ts
├── modal.tsx
├── index.test.tsx
└── index.tsx
├── .eslintignore
├── tsconfig.test.json
├── docs
├── assets
│ └── images
│ │ ├── contribution_cta.png
│ │ └── table-of-contents.png
├── setup-internet-identity.md
└── CONTRIBUTING.md
├── .prettierrc
├── .editorconfig
├── .github
├── workflows
│ ├── provision-runner.sh
│ ├── main.yml
│ └── npm-release.yml
├── ISSUE_TEMPLATE
│ ├── feature_request.md
│ └── bug_report.md
└── dependabot.yml
├── .gitignore
├── tsconfig.json
├── .eslintrc
├── LICENSE
├── package.json
├── README.md
└── CODE_OF_CONDUCT.md
/example/canister_ids.json:
--------------------------------------------------------------------------------
1 | {}
2 |
--------------------------------------------------------------------------------
/example/.env.local.template:
--------------------------------------------------------------------------------
1 | DFX_NETWORK=ic
2 | II_CANISTER_ID=
--------------------------------------------------------------------------------
/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - 12
4 | - 10
5 |
--------------------------------------------------------------------------------
/src/react-app-env.d.ts:
--------------------------------------------------------------------------------
1 | ///