Create custom select, update tests

This commit is contained in:
phntxx 2021-06-30 00:56:01 +02:00
parent bfc8caf091
commit d8c9e57dee
21 changed files with 189 additions and 300 deletions

View file

@ -43,13 +43,12 @@ const App = () => {
<GlobalStyle />
<div>
<SearchBar search={searchProviderData?.search} />
{!themeData.error ||
(!searchProviderData.error && (
<Settings
themes={themeData?.themes}
search={searchProviderData?.search}
/>
))}
{(!themeData.error || !searchProviderData.error) && (
<Settings
themes={themeData?.themes}
search={searchProviderData?.search}
/>
)}
<Greeter data={greeterData.greeter} />
{!appData.error && (
<AppList apps={appData.apps} categories={appData.categories} />