Create custom select, update tests
This commit is contained in:
parent
bfc8caf091
commit
d8c9e57dee
21 changed files with 189 additions and 300 deletions
13
src/app.tsx
13
src/app.tsx
|
@ -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} />
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue