2016-08-10 21:36:11 +02:00
|
|
|
// NPM imports
|
2016-07-07 23:23:18 +02:00
|
|
|
import React, { Component } from "react";
|
|
|
|
|
2016-08-10 21:36:11 +02:00
|
|
|
// Other views
|
2016-07-07 23:23:18 +02:00
|
|
|
import ArtistsPage from "./ArtistsPage";
|
|
|
|
|
2016-08-10 21:36:11 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 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 {
|
2016-08-10 23:50:23 +02:00
|
|
|
render() {
|
2016-07-07 23:23:18 +02:00
|
|
|
return (
|
|
|
|
<ArtistsPage {...this.props} />
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|