2021-08-16 15:04:19 +03:00
|
|
|
import React from 'react';
|
|
|
|
|
|
|
|
import ReadReceipts from '../read-receipts/ReadReceipts';
|
2021-10-18 18:25:52 +03:00
|
|
|
import ProfileViewer from '../profile-viewer/ProfileViewer';
|
2021-12-10 13:52:53 +02:00
|
|
|
import Search from '../search/Search';
|
2021-08-16 15:04:19 +03:00
|
|
|
|
|
|
|
function Dialogs() {
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<ReadReceipts />
|
2021-10-18 18:25:52 +03:00
|
|
|
<ProfileViewer />
|
2021-12-10 13:52:53 +02:00
|
|
|
<Search />
|
2021-08-16 15:04:19 +03:00
|
|
|
</>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Dialogs;
|