ampache_react/app/views/BrowsePage.jsx
Phyks (Lucas Verney) d8a7d4f66a Rework webplayer
Full rework of webplayer. Webplayer is back to its previous working
state, and ready for further improvements.
2016-08-10 23:50:23 +02:00

18 lines
330 B
JavaScript

// NPM imports
import React, { Component } from "react";
// Other views
import ArtistsPage from "./ArtistsPage";
/**
* Browse page is an alias for artists page at the moment.
*/
export default class BrowsePage extends Component {
render() {
return (
<ArtistsPage {...this.props} />
);
}
}