Hey is a decentralized and permissionless social media app built with Lens Protocol 馃尶
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 15 lines 284 B view raw
1import EmojiPicker from "./EmojiPicker"; 2import InlineMenu from "./InlineMenu"; 3import MentionPicker from "./MentionPicker"; 4 5const EditorMenus = () => { 6 return ( 7 <> 8 <InlineMenu /> 9 <MentionPicker /> 10 <EmojiPicker /> 11 </> 12 ); 13}; 14 15export default EditorMenus;