From f65c2359f360925fef63096ae2f6aa602a4338f6 Mon Sep 17 00:00:00 2001 From: Monalisha Mishra Date: Thu, 16 May 2024 17:11:43 +0530 Subject: [PATCH] fix: fixed review comment --- .../app/ChatUITest/ChatPreviewSearchList.tsx | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/packages/examples/sdk-frontend-react/src/app/ChatUITest/ChatPreviewSearchList.tsx b/packages/examples/sdk-frontend-react/src/app/ChatUITest/ChatPreviewSearchList.tsx index be68b161d..2db58768e 100644 --- a/packages/examples/sdk-frontend-react/src/app/ChatUITest/ChatPreviewSearchList.tsx +++ b/packages/examples/sdk-frontend-react/src/app/ChatUITest/ChatPreviewSearchList.tsx @@ -1,19 +1,20 @@ import { ChatPreviewSearchList } from '@pushprotocol/uiweb'; +import styled from 'styled-components'; const ChatPreviewSearchListTest = () => { return ( <> -
+ -
+ ); }; export default ChatPreviewSearchListTest; + +const Conatiner = styled.div` +background: '#ffeded', +border: '1px solid rgb(226,8,128)', +height: '28.5vh', +`;