tessl install tessl/npm-eslint-config-node@3.0.0Pluggable ESLint configuration for Node.js that extends ESNext with Node.js-specific safety checks and best practices
Agent Success
Agent success rate when using this tile
73%
Improvement
Agent success rate improvement when using this tile compared to baseline
1.12x
Baseline
Agent success rate without this tile
65%
Create a React Native component that displays a user profile card with proper styling practices.
Build a ProfileCard component that displays user information:
The component should accept user data and display:
Your implementation must follow React Native best practices for styling:
The component should:
imageUri (string), name (string), bio (string), isOnline (boolean)ProfileCardGiven valid props (imageUri="https://example.com/pic.jpg", name="John Doe", bio="Software engineer", isOnline=true), the component renders without errors @test
Given isOnline=false, the status indicator renders with gray color; given isOnline=true, it renders with green color @test
@generates
/**
* ProfileCard component displays a user profile card with image, name, bio, and online status.
*
* @param {Object} props - Component props
* @param {string} props.imageUri - URI of the profile image
* @param {string} props.name - User's name
* @param {string} props.bio - User's bio/description
* @param {boolean} props.isOnline - Whether the user is online
* @returns {React.Element} Rendered profile card component
*/
export function ProfileCard({ imageUri, name, bio, isOnline }) {
// Implementation here
}Provides the core React Native components and APIs for building mobile applications.
Provides ESLint configuration for React Native projects to enforce code quality and styling best practices.