├── .gitignore ├── README.md ├── package.json ├── public └── favicon.ico ├── src ├── components │ ├── CountriesTable │ │ ├── CountriesTable.js │ │ └── CountriesTable.module.css │ ├── Layout │ │ ├── Layout.js │ │ └── Layout.module.css │ └── SearchInput │ │ ├── SearchInput.js │ │ └── SearchInput.module.css ├── pages │ ├── _app.js │ ├── country │ │ ├── Country.module.css │ │ └── [id].js │ └── index.js └── styles │ ├── Home.module.css │ └── globals.css └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nghiemthu/world-ranks/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nghiemthu/world-ranks/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nghiemthu/world-ranks/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nghiemthu/world-ranks/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /src/components/CountriesTable/CountriesTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nghiemthu/world-ranks/HEAD/src/components/CountriesTable/CountriesTable.js -------------------------------------------------------------------------------- /src/components/CountriesTable/CountriesTable.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nghiemthu/world-ranks/HEAD/src/components/CountriesTable/CountriesTable.module.css -------------------------------------------------------------------------------- /src/components/Layout/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nghiemthu/world-ranks/HEAD/src/components/Layout/Layout.js -------------------------------------------------------------------------------- /src/components/Layout/Layout.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nghiemthu/world-ranks/HEAD/src/components/Layout/Layout.module.css -------------------------------------------------------------------------------- /src/components/SearchInput/SearchInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nghiemthu/world-ranks/HEAD/src/components/SearchInput/SearchInput.js -------------------------------------------------------------------------------- /src/components/SearchInput/SearchInput.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nghiemthu/world-ranks/HEAD/src/components/SearchInput/SearchInput.module.css -------------------------------------------------------------------------------- /src/pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nghiemthu/world-ranks/HEAD/src/pages/_app.js -------------------------------------------------------------------------------- /src/pages/country/Country.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nghiemthu/world-ranks/HEAD/src/pages/country/Country.module.css -------------------------------------------------------------------------------- /src/pages/country/[id].js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nghiemthu/world-ranks/HEAD/src/pages/country/[id].js -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nghiemthu/world-ranks/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/styles/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nghiemthu/world-ranks/HEAD/src/styles/Home.module.css -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nghiemthu/world-ranks/HEAD/src/styles/globals.css -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nghiemthu/world-ranks/HEAD/yarn.lock --------------------------------------------------------------------------------