Sha256: bf90ac613f08bf2c35dcf472cd4485a9f0533aea5912b36e9ace0ccdf71c4e1e
Contents?: true
Size: 1.01 KB
Versions: 1563
Compression:
Stored size: 1.01 KB
Contents
import React from "react" import Message from "../_message" const MessageDefault = (props) => { return ( <> <Message avatarName='Keith Craig' label='Keith Craig' paddingBottom="md" timestamp='2 days ago' {...props} > <Message.Mention variant='user'>{'@all'}</Message.Mention>{` let's welcome `} <Message.Mention variant='self'>{'@Lucille Sanchez'}</Message.Mention>{' to the team this week!'} </Message> <Message avatarName='Lucille Sanchez' avatarUrl='https://randomuser.me/api/portraits/women/50.jpg' label='Lucille Sanchez' timestamp='2 days ago' {...props} > <Message.Mention variant='self'>{'@Keith Craig'}</Message.Mention>{` thanks for the warm welcome! I'm so excited!`} </Message> </> ) } export default MessageDefault
Version data entries
1,563 entries across 1,563 versions & 2 rubygems