Add search modal (#132)

Signed-off-by: Ajay Bura <ajbura@gmail.com>
This commit is contained in:
Ajay Bura
2021-12-10 17:22:53 +05:30
parent 84f68c4fc2
commit e6f1e7f216
10 changed files with 348 additions and 7 deletions
+2
View File
@@ -2,12 +2,14 @@ import React from 'react';
import ReadReceipts from '../read-receipts/ReadReceipts';
import ProfileViewer from '../profile-viewer/ProfileViewer';
import Search from '../search/Search';
function Dialogs() {
return (
<>
<ReadReceipts />
<ProfileViewer />
<Search />
</>
);
}