You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
461 B
TypeScript
13 lines
461 B
TypeScript
import { FC } from 'react'
|
|
import { IoChatbubblesOutline } from '@react-icons/all-files/io5/IoChatbubblesOutline'
|
|
|
|
const StartMessaging: FC = () => {
|
|
return (
|
|
<div className='flex flex-col items-center justify-center w-full text-gray-800'>
|
|
<div className="text-9xl mb-5"><IoChatbubblesOutline/></div>
|
|
<p className='text-xl font-medium'>Select chat to start messaging</p>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default StartMessaging; |