Testing Component Libraries in Astro

March 30, 2025

The goal of this project is to use AI tools to slice web mockups into React components. Ideally, I want to take a design and automatically split it into pieces that can be imported into React, and ultimately used within an Astro environment. For straightforward pages, after rigorous testing, Iā€™ve found plain React with CSS Modules provides the cleanest results so far. However, when it comes to interactive elements, Iā€™m still testing various libraries and exploring how AI can incorporate these effectively.

Here is a none scientific AI performance ranking while converting designs
  1. Claude (with extra time), seems the most optimized for this task
  2. Figma - various plugins, quite good results, but a more complex workflow
  3. Grok or Google Gemini or ChatGPT (these are all similar results, all improving over time)

It needs to work with Astro, and Server Rendered React

Ideally, this approach would integrate smoothly with Astro, as I believe Astro offers the fastest possible load times thanks to its island architecture. Yet, this choice limits the libraries available, as many require React Context (Mantine), or use CSS-in-JS approaches (Material UI), which donā€™t render correctly in Astro, and are problematic even in Next.js for server rendering. Furthermore, many libraries rely heavily on Tailwind, which, despite being well-supported in Astro, uses class names I find harder to edit compared to CSS Modules.

Tailwind based libraries

Tailwind based libraries work well with AI, and Astro. Itā€™s really me, as a seasoned developer, I would prefer to use CSS directly. If I was just starting, I probably would end up using tailwind. CSS is a language all of itā€™s own, that is improving quickly. I fear that relying on Tailwind would create an added burden.

CSS-in-JS libraries

From a developer standpoint, CSS-in-JS (Chakra UI, Material UI, and now ParkUI, styled) are a wonderful experience. When dealing with an established code base, it streamlines the development process. However, even when server-side rendering (SSR) and hydration are functioning (can be tricky to set this up), the downside is significantly larger and potentially harder to read JSX files. One could argue, that keeping everything together, can make it easier to understand. But, when there is logic and layout together, it can become exhausting to read through. Having better separation of concernsā€”such as CSS Modulesā€”would be preferable, or at least worth exploring further.

Chakra UI has a cousin library, ParkUI, which works well. Its atomic design approach is excellent, and components are very intuitive to use. The primary downside is that AI tools currently have limited support for it. Component imports are often fragile, since you ā€˜installā€™ them, and Iā€™ve seen them frequently breaking initially and requiring manual tweaking.

User experience when editing

CSS Modules, CSS-in-JS, and Tailwind all suffer a similar irritation when trying to debug some part of the site you havenā€™t been in awhile. In the old days you would trace the class name to the component. Now, even that is not possible, you need a whole new tool, React Developer tools to work best, and the selection of things is not as smooth as the built in one for the browser. That gives a huge advantage for traditional class names, or scoped class names.

The best experience Iā€™ve had was with plain CSS using Chrome DevTools linked to a workspace, where CSS edits directly updated files on disk. This workflow is excellent and something Iā€™d like to achieve again. However, plain CSS quickly encounters issues with class-name conflicts, making it unsustainable as a long-term strategy. The way around this is scoped class classnames. AI struggles with this. To address this, Iā€™ve requested ā€œScoped CSS,ā€ where the outer div has a class name, and inner divs use scoped class names relative to that outer div. This approach improves editing significantly, but the AI tools need additional training to effectively handle it.

Evaluation of Libraries

My favorite, ParkUI

I really love this library. It is hands down the coolest new tech. But I wasnā€™t able to get it working well in my flow.

Testing ParkUI with Next.js

I really wanted to get ParkUI to work, as I am very familiar with Chakra. I love the concept of PandaCSS, how it boils the css down to only things being used. Still atomic, but writen as simple CSS in the component. so I ended up trying it out on Next.js. I was able to get the basic stuff working, but, AI was not good at using the components properly in the mockup. And, in the end, it didnā€™t save me time, but made it harder.

AntD

This one is bloated, and kind of old school, but, it just works, and it will be what I use going forward.

Conclusion

In conclusion, while AI tools are making strides in converting designs into code, there are still challenges to overcome for utilizing working components. The choice of libraries and frameworks can significantly impact the development experience, and finding the right balance between ease of use and performance is crucial.

Considering how quickly things are changing, I would not be surprised if the landscape shifts dramatically in the next few months. For now, Iā€™m focusing on plain React with CSS Modules for straightforward pages, while using AntD for complex interactive elements. The goal is to find a solution that integrates seamlessly with Astro and provides an optimal user experience.

Final Process

  1. Mockups (figma, or other PNG file)
  2. AI tool (Claude)
  3. Prompt: React with Scoped CSS. AntD for interactive elements, and react-icons for icons
  4. Bring them into VSCode