update search bars

This commit is contained in:
ghalestrilo 2020-07-31 09:09:35 -03:00
parent 40db915282
commit 4aad59a288
1 changed files with 3 additions and 2 deletions

View File

@ -13,7 +13,7 @@ import SketchList from '../IDE/components/SketchList';
import CollectionList from '../IDE/components/CollectionList';
import AssetList from '../IDE/components/AssetList';
import Content from './MobileViewContent';
import { SketchSearchbar } from '../IDE/components/Searchbar';
import { SketchSearchbar, CollectionSearchbar } from '../IDE/components/Searchbar';
const EXAMPLE_USERNAME = 'p5';
@ -77,7 +77,8 @@ const MobileDashboard = ({ params, location }) => {
<Content slimheader>
<Subheader>
<SketchSearchbar />
{panel === Tabs[0] && <SketchSearchbar />}
{panel === Tabs[1] && <CollectionSearchbar />}
</Subheader>
{renderPanel(panel, { username, key: pathname })}
</Content>