├── .gitignore ├── README.md ├── package.json ├── public └── index.html └── src ├── Components ├── App │ ├── App.css │ └── App.jsx ├── Display │ ├── Display.css │ └── Display.jsx ├── Footer │ ├── Footer.css │ └── Footer.jsx ├── Header │ └── Header.jsx └── SearchBar │ ├── SearchBar.css │ └── SearchBar.jsx ├── index.css └── index.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AswinAsok/Profile-Retriever/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AswinAsok/Profile-Retriever/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AswinAsok/Profile-Retriever/HEAD/package.json -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AswinAsok/Profile-Retriever/HEAD/public/index.html -------------------------------------------------------------------------------- /src/Components/App/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AswinAsok/Profile-Retriever/HEAD/src/Components/App/App.css -------------------------------------------------------------------------------- /src/Components/App/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AswinAsok/Profile-Retriever/HEAD/src/Components/App/App.jsx -------------------------------------------------------------------------------- /src/Components/Display/Display.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AswinAsok/Profile-Retriever/HEAD/src/Components/Display/Display.css -------------------------------------------------------------------------------- /src/Components/Display/Display.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AswinAsok/Profile-Retriever/HEAD/src/Components/Display/Display.jsx -------------------------------------------------------------------------------- /src/Components/Footer/Footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AswinAsok/Profile-Retriever/HEAD/src/Components/Footer/Footer.css -------------------------------------------------------------------------------- /src/Components/Footer/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AswinAsok/Profile-Retriever/HEAD/src/Components/Footer/Footer.jsx -------------------------------------------------------------------------------- /src/Components/Header/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AswinAsok/Profile-Retriever/HEAD/src/Components/Header/Header.jsx -------------------------------------------------------------------------------- /src/Components/SearchBar/SearchBar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AswinAsok/Profile-Retriever/HEAD/src/Components/SearchBar/SearchBar.css -------------------------------------------------------------------------------- /src/Components/SearchBar/SearchBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AswinAsok/Profile-Retriever/HEAD/src/Components/SearchBar/SearchBar.jsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AswinAsok/Profile-Retriever/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AswinAsok/Profile-Retriever/HEAD/src/index.js --------------------------------------------------------------------------------