ampache_react/app/views/HomePage.jsx

17 lines
324 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";
/**
* Homepage is an alias for Artists page at the moment.
*/
2016-07-07 23:23:18 +02:00
export default class HomePage extends Component {
render() {
2016-07-07 23:23:18 +02:00
return (
<ArtistsPage {...this.props} />
);
}
}