Astro allows you to build reusable components using any JavaScript framework you prefer, such as React, Vue, or Svelte. This flexibility lets you choose the best tool for your project.
import React from 'react';
export default function Button({ label }) {
return <button className="btn">{label}</button>;
}