├── .vscode └── settings.json ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.css ├── App.js ├── App.test.js ├── asset │ ├── image │ │ ├── avatar.jpeg │ │ ├── index.js │ │ ├── vote.svg │ │ └── waves.svg │ └── index.js ├── component │ ├── NavbarComp.jsx │ └── index.js ├── index.css ├── index.js ├── logo.svg ├── pages │ ├── Home │ │ ├── FooterComp.jsx │ │ ├── HeaderComp.jsx │ │ ├── index.css │ │ └── index.jsx │ ├── Voting │ │ ├── ListKandidat.jsx │ │ ├── Loading.jsx │ │ ├── index.css │ │ └── index.jsx │ └── index.js ├── router │ └── index.js ├── serviceWorker.js ├── setupTests.js └── utils │ └── api.js └── yarn.lock /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "git.ignoreLimitWarning": true 3 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fikrisuheri/larareact-front-end-voting/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fikrisuheri/larareact-front-end-voting/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fikrisuheri/larareact-front-end-voting/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fikrisuheri/larareact-front-end-voting/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fikrisuheri/larareact-front-end-voting/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fikrisuheri/larareact-front-end-voting/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fikrisuheri/larareact-front-end-voting/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fikrisuheri/larareact-front-end-voting/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fikrisuheri/larareact-front-end-voting/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fikrisuheri/larareact-front-end-voting/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fikrisuheri/larareact-front-end-voting/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/asset/image/avatar.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fikrisuheri/larareact-front-end-voting/HEAD/src/asset/image/avatar.jpeg -------------------------------------------------------------------------------- /src/asset/image/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fikrisuheri/larareact-front-end-voting/HEAD/src/asset/image/index.js -------------------------------------------------------------------------------- /src/asset/image/vote.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fikrisuheri/larareact-front-end-voting/HEAD/src/asset/image/vote.svg -------------------------------------------------------------------------------- /src/asset/image/waves.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fikrisuheri/larareact-front-end-voting/HEAD/src/asset/image/waves.svg -------------------------------------------------------------------------------- /src/asset/index.js: -------------------------------------------------------------------------------- 1 | export * from './image'; 2 | -------------------------------------------------------------------------------- /src/component/NavbarComp.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fikrisuheri/larareact-front-end-voting/HEAD/src/component/NavbarComp.jsx -------------------------------------------------------------------------------- /src/component/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fikrisuheri/larareact-front-end-voting/HEAD/src/component/index.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fikrisuheri/larareact-front-end-voting/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fikrisuheri/larareact-front-end-voting/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fikrisuheri/larareact-front-end-voting/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/pages/Home/FooterComp.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fikrisuheri/larareact-front-end-voting/HEAD/src/pages/Home/FooterComp.jsx -------------------------------------------------------------------------------- /src/pages/Home/HeaderComp.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fikrisuheri/larareact-front-end-voting/HEAD/src/pages/Home/HeaderComp.jsx -------------------------------------------------------------------------------- /src/pages/Home/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fikrisuheri/larareact-front-end-voting/HEAD/src/pages/Home/index.css -------------------------------------------------------------------------------- /src/pages/Home/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fikrisuheri/larareact-front-end-voting/HEAD/src/pages/Home/index.jsx -------------------------------------------------------------------------------- /src/pages/Voting/ListKandidat.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fikrisuheri/larareact-front-end-voting/HEAD/src/pages/Voting/ListKandidat.jsx -------------------------------------------------------------------------------- /src/pages/Voting/Loading.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fikrisuheri/larareact-front-end-voting/HEAD/src/pages/Voting/Loading.jsx -------------------------------------------------------------------------------- /src/pages/Voting/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fikrisuheri/larareact-front-end-voting/HEAD/src/pages/Voting/index.css -------------------------------------------------------------------------------- /src/pages/Voting/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fikrisuheri/larareact-front-end-voting/HEAD/src/pages/Voting/index.jsx -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fikrisuheri/larareact-front-end-voting/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fikrisuheri/larareact-front-end-voting/HEAD/src/router/index.js -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fikrisuheri/larareact-front-end-voting/HEAD/src/serviceWorker.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fikrisuheri/larareact-front-end-voting/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /src/utils/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fikrisuheri/larareact-front-end-voting/HEAD/src/utils/api.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fikrisuheri/larareact-front-end-voting/HEAD/yarn.lock --------------------------------------------------------------------------------