12 lines
233 B
JavaScript
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} />
|
|
);
|
|
}
|
|
}
|