ampache_react/app/views/BrowsePage.jsx

12 lines
233 B
JavaScript

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