tessl install tessl/npm-emoji-picker-react@4.13.0Emoji Picker component for React Applications on the web
Agent Success
Agent success rate when using this tile
74%
Improvement
Agent success rate improvement when using this tile compared to baseline
1x
Baseline
Agent success rate without this tile
74%
Build a simple social media post reaction widget that allows users to quickly react to a post using emoji reactions.
Create a React component that displays a post with a reaction interface. The component should:
The widget should provide a smooth user experience typical of social media platforms.
@generates
/**
* Props for the SocialMediaPost component
*/
interface SocialMediaPostProps {
postText: string;
}
/**
* Social media post component with emoji reactions
*/
export function SocialMediaPost(props: SocialMediaPostProps): JSX.Element;Provides the emoji reaction picker interface.