├── .gitignore ├── README.md ├── components ├── ActualPopulation.js ├── Stats.js └── WhiteMale.js ├── data.js ├── index.js └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/representation/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/representation/HEAD/README.md -------------------------------------------------------------------------------- /components/ActualPopulation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/representation/HEAD/components/ActualPopulation.js -------------------------------------------------------------------------------- /components/Stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/representation/HEAD/components/Stats.js -------------------------------------------------------------------------------- /components/WhiteMale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/representation/HEAD/components/WhiteMale.js -------------------------------------------------------------------------------- /data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/representation/HEAD/data.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/representation/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/representation/HEAD/package.json --------------------------------------------------------------------------------