2023-05-01
3906
#react
Raphael Ugwu
4578
May 1, 2023 â‹… 13 min read

How to create a React admin panel

Raphael Ugwu Writer, software engineer, and a lifelong student.

Recent posts:

Building Multi-Step Forms With React Hook Form And Zod

Building a reusable multi-step form with React Hook Form and Zod

Use React Hook Form and Zod to build a multi-step form component in React that handles input validation, tracks form progress, and more.

Chinwike Maduabuchi
Feb 26, 2025 â‹… 13 min read
JavaScript Dictionary

JavaScript dictionary: How to use objects and maps for key-value pairs

Learn how to use JavaScript dictionaries with Objects and Maps. Discover key differences, performance insights, and best use cases with practical examples.

Elijah Agbonze
Feb 25, 2025 â‹… 9 min read
A guide to the CSS grid-template-columns property

A guide to the CSS grid-template-columns property

Take a deep dive into the CSS grid template columns property, an essential part of the CSS Grid Layout specification.

Samuel Martins
Feb 25, 2025 â‹… 15 min read
A Guide To Node.js Readable Streams

A guide to Node.js readable streams

Explore how Node.js readable streams process data in small chunks, manage data flow, handle errors, and ensure resource cleanup.

Yan Sun
Feb 25, 2025 â‹… 7 min read
View all posts

5 Replies to "How to create a React admin panel"

  1. Outstanding, and thank you for this informative blog on ‘react-admin’! Just a not about the code, which is corrected codesandbox….., the username variable should be left out in the authentication component in the following manner. Referring to the codesandbox shows the correction made:

    // when a user tries to logout
    if (type === AUTH_LOGOUT) {
    localStorage.removeItem(‘username’)
    return Promise.resolve();
    }

    I’ve learned a lot in a relatively brief period of instruction and it’s much appreciated.

    RL Glover

  2. You may want to update some parts in here…
    The DisabledInput Component Was Removed
    You can replace with a disabled or read-only TextInput.

Leave a Reply