ampache_react/app/views/BrowsePage.jsx

18 lines
330 B
React
Raw Normal View History

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