Phyks (Lucas Verney)
d8a7d4f66a
Full rework of webplayer. Webplayer is back to its previous working state, and ready for further improvements.
17 lines
324 B
JavaScript
17 lines
324 B
JavaScript
// NPM imports
|
|
import React, { Component } from "react";
|
|
|
|
// Other views
|
|
import ArtistsPage from "./ArtistsPage";
|
|
|
|
/**
|
|
* Homepage is an alias for Artists page at the moment.
|
|
*/
|
|
export default class HomePage extends Component {
|
|
render() {
|
|
return (
|
|
<ArtistsPage {...this.props} />
|
|
);
|
|
}
|
|
}
|