Loading repository data…
Loading repository data…
HelloMoto069 / repository
Admin_UI, a ReactJS-based solution for the GeekTrust Coding Challenge. This project leverages the power of ReactJS, axios, JavaScript, HTML, and CSS to deliver a seamless and efficient user interface. Dive into the world of GeekTrust challenges with Admin_UI, simplifying the coding experience and showcasing a robust tech stack.

This is a user interface for admins to view and delete users in a startup. The interface retrieves user data from an API and provides various features to manage the user records.
The implementation of this user interface involves the following technologies:
To retrieve the list of users and their properties, an API is provided. Here are the details:
Request Type: GET
Endpoint: https://geektrust.s3-ap-southeast-1.amazonaws.com/adminui-problem/members.json
Sample Response:
[
{
"id": "1",
"name": "Aaron Miles",
"email": "aaron@mailinator.com",
"role": "member"
},
{
"id": "2",
"name": "Aishwarya Naik",
"email": "aishwarya@mailinator.com",
"role": "member"
},
{
"id": "3",
"name": "Arvind Kumar",
"email": "arvind@mailinator.com",
"role": "admin"
}
]