tessl install tessl/npm-types--react@19.1.0TypeScript definitions for React, the popular JavaScript library for building user interfaces
Agent Success
Agent success rate when using this tile
80%
Improvement
Agent success rate improvement when using this tile compared to baseline
1.48x
Baseline
Agent success rate without this tile
54%
Build a TypeScript React component that displays user profile information with multiple elements.
Create a component that:
name (string), email (string), and bio (string) fieldsinterface User {
name: string;
email: string;
bio: string;
}
interface UserProfileProps {
user: User;
}
export default function UserProfile(props: UserProfileProps): JSX.Element;@generates
Provides React library for building components.
Provides TypeScript type definitions for React.