Phyks (Lucas Verney)
198d50aec5
See issue #16 * Add basic settings view * Fix play next song when playlist is on * Add timer styling on webplayer * Fix wrong albums being linked in songs table
19 lines
311 B
JavaScript
19 lines
311 B
JavaScript
// NPM imports
|
|
import React, { Component } from "react";
|
|
|
|
// Components
|
|
import Settings from "../components/Settings";
|
|
|
|
/**
|
|
* Paginated table of available songs
|
|
*/
|
|
class SettingsPage extends Component {
|
|
render() {
|
|
return (
|
|
<Settings />
|
|
);
|
|
}
|
|
}
|
|
|
|
export default SettingsPage;
|