Initial support for album browsing from UI

This commit is contained in:
Deluan
2020-01-22 12:32:31 -05:00
parent 3a8124a1de
commit ea30b4c2d9
6 changed files with 94 additions and 28 deletions
+2
View File
@@ -6,6 +6,7 @@ import authProvider from './authProvider'
import { Login } from './layout'
import user from './user'
import song from './song'
import album from './album'
const App = () => (
<Admin
@@ -14,6 +15,7 @@ const App = () => (
loginPage={Login}
>
<Resource name="song" {...song} />
<Resource name="album" {...album} />
<Resource name="user" {...user} />
</Admin>
)