Initial support for artist browsing from UI. Also add linking between resources

This commit is contained in:
Deluan
2020-01-22 13:02:19 -05:00
parent b23175e32b
commit 7dc3f49c1c
6 changed files with 60 additions and 7 deletions
+2
View File
@@ -7,6 +7,7 @@ import { Login, Layout } from './layout'
import user from './user'
import song from './song'
import album from './album'
import artist from './artist'
const App = () => (
<Admin
@@ -17,6 +18,7 @@ const App = () => (
>
<Resource name="song" {...song} options={{ subMenu: 'library' }} />
<Resource name="album" {...album} options={{ subMenu: 'library' }} />
<Resource name="artist" {...artist} options={{ subMenu: 'library' }} />
<Resource name="user" {...user} />
</Admin>
)