├── .babelrc ├── .editorconfig ├── .eslintrc ├── .gitignore ├── .postcssrc.js ├── CHANGELOG.md ├── README.md ├── dist ├── style.min.css └── vote.bundle.js ├── package.json ├── src ├── app.jsx ├── components │ ├── account │ │ ├── account-style.scss │ │ └── account.jsx │ ├── create-topic │ │ ├── create-topic-style.scss │ │ └── create-topic.jsx │ ├── currency-icon │ │ ├── currency-icon-style.scss │ │ └── currency-icon.jsx │ ├── dev-container │ │ ├── dev-container-style.scss │ │ └── dev-container.jsx │ ├── dropdown │ │ ├── dropdown-style.scss │ │ └── dropdown.jsx │ ├── influence │ │ ├── influence-style.scss │ │ └── influence.jsx │ ├── topic │ │ ├── topic-style.scss │ │ └── topic.jsx │ ├── votes │ │ ├── votes-style.scss │ │ └── votes.jsx │ └── wrapper │ │ ├── wrapper-style.scss │ │ └── wrapper.jsx ├── favicon.ico └── utils │ ├── js │ ├── api.dev.js │ └── api.js │ └── scss │ ├── _functions.scss │ ├── _mixins.scss │ └── _vars.scss ├── webpack.common.babel.js ├── webpack.dev.babel.js └── webpack.dist.babel.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack/voting-app/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack/voting-app/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack/voting-app/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack/voting-app/HEAD/.postcssrc.js -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack/voting-app/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack/voting-app/HEAD/README.md -------------------------------------------------------------------------------- /dist/style.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack/voting-app/HEAD/dist/style.min.css -------------------------------------------------------------------------------- /dist/vote.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack/voting-app/HEAD/dist/vote.bundle.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack/voting-app/HEAD/package.json -------------------------------------------------------------------------------- /src/app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack/voting-app/HEAD/src/app.jsx -------------------------------------------------------------------------------- /src/components/account/account-style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack/voting-app/HEAD/src/components/account/account-style.scss -------------------------------------------------------------------------------- /src/components/account/account.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack/voting-app/HEAD/src/components/account/account.jsx -------------------------------------------------------------------------------- /src/components/create-topic/create-topic-style.scss: -------------------------------------------------------------------------------- 1 | .create-topic { 2 | text-align: left; 3 | } 4 | -------------------------------------------------------------------------------- /src/components/create-topic/create-topic.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack/voting-app/HEAD/src/components/create-topic/create-topic.jsx -------------------------------------------------------------------------------- /src/components/currency-icon/currency-icon-style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack/voting-app/HEAD/src/components/currency-icon/currency-icon-style.scss -------------------------------------------------------------------------------- /src/components/currency-icon/currency-icon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack/voting-app/HEAD/src/components/currency-icon/currency-icon.jsx -------------------------------------------------------------------------------- /src/components/dev-container/dev-container-style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack/voting-app/HEAD/src/components/dev-container/dev-container-style.scss -------------------------------------------------------------------------------- /src/components/dev-container/dev-container.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack/voting-app/HEAD/src/components/dev-container/dev-container.jsx -------------------------------------------------------------------------------- /src/components/dropdown/dropdown-style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack/voting-app/HEAD/src/components/dropdown/dropdown-style.scss -------------------------------------------------------------------------------- /src/components/dropdown/dropdown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack/voting-app/HEAD/src/components/dropdown/dropdown.jsx -------------------------------------------------------------------------------- /src/components/influence/influence-style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack/voting-app/HEAD/src/components/influence/influence-style.scss -------------------------------------------------------------------------------- /src/components/influence/influence.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack/voting-app/HEAD/src/components/influence/influence.jsx -------------------------------------------------------------------------------- /src/components/topic/topic-style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack/voting-app/HEAD/src/components/topic/topic-style.scss -------------------------------------------------------------------------------- /src/components/topic/topic.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack/voting-app/HEAD/src/components/topic/topic.jsx -------------------------------------------------------------------------------- /src/components/votes/votes-style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack/voting-app/HEAD/src/components/votes/votes-style.scss -------------------------------------------------------------------------------- /src/components/votes/votes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack/voting-app/HEAD/src/components/votes/votes.jsx -------------------------------------------------------------------------------- /src/components/wrapper/wrapper-style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack/voting-app/HEAD/src/components/wrapper/wrapper-style.scss -------------------------------------------------------------------------------- /src/components/wrapper/wrapper.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack/voting-app/HEAD/src/components/wrapper/wrapper.jsx -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack/voting-app/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/utils/js/api.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack/voting-app/HEAD/src/utils/js/api.dev.js -------------------------------------------------------------------------------- /src/utils/js/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack/voting-app/HEAD/src/utils/js/api.js -------------------------------------------------------------------------------- /src/utils/scss/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack/voting-app/HEAD/src/utils/scss/_functions.scss -------------------------------------------------------------------------------- /src/utils/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack/voting-app/HEAD/src/utils/scss/_mixins.scss -------------------------------------------------------------------------------- /src/utils/scss/_vars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack/voting-app/HEAD/src/utils/scss/_vars.scss -------------------------------------------------------------------------------- /webpack.common.babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack/voting-app/HEAD/webpack.common.babel.js -------------------------------------------------------------------------------- /webpack.dev.babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack/voting-app/HEAD/webpack.dev.babel.js -------------------------------------------------------------------------------- /webpack.dist.babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack/voting-app/HEAD/webpack.dist.babel.js --------------------------------------------------------------------------------