ampache_react/app/views/HomePage.jsx

12 lines
231 B
JavaScript

import React, { Component } from "react";
import ArtistsPage from "./ArtistsPage";
export default class HomePage extends Component {
render () {
return (
<ArtistsPage {...this.props} />
);
}
}