Just type what you want.
Describe the app, paste a screenshot, or drop in a doc. Taskspro writes the code while you watch.
export function RevenueChart() {
const [data, setData] = useQuery(...);
return (
<Card className="p-6">
<LineChart data={data} />
</Card>
);
}