Base search implementation

This commit is contained in:
Lei Nelissen
2020-07-05 23:15:30 +02:00
parent 5df929752c
commit ae9e6da9c9
5 changed files with 48 additions and 0 deletions

View File

@@ -4,6 +4,7 @@ import { StackParams } from './types';
import Albums from './stacks/Albums';
import Album from './stacks/Album';
import RecentAlbums from './stacks/RecentAlbums';
import Search from './stacks/Search';
const Stack = createStackNavigator<StackParams>();
@@ -13,6 +14,7 @@ function MusicStack() {
<Stack.Screen name="RecentAlbums" component={RecentAlbums} options={{ headerTitle: 'Recent Albums' }} />
<Stack.Screen name="Albums" component={Albums} />
<Stack.Screen name="Album" component={Album} />
<Stack.Screen name="Search" component={Search} />
</Stack.Navigator>
);
}