Make parameters optional for components ported to TSX

This commit is contained in:
MrTimscampi 2021-06-18 16:59:54 +02:00
parent d770581c52
commit 69c4aee2b0
7 changed files with 18 additions and 18 deletions

View file

@ -6,10 +6,10 @@ import ServerConnections from '../ServerConnections';
import SearchResultsRow from './SearchResultsRow';
type SearchResultsProps = {
serverId: string;
parentId: string;
collectionType: string;
query: string;
serverId?: string;
parentId?: string;
collectionType?: string;
query?: string;
}
/*