ampache_react/app/components/Settings.jsx
Phyks (Lucas Verney) 198d50aec5 Working on known bugs
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
2016-09-18 20:57:51 +02:00

27 lines
586 B
JavaScript

// NPM imports
import React, { Component } from "react";
import CSSModules from "react-css-modules";
import { injectIntl, intlShape } from "react-intl";
// Styles
import css from "../styles/Songs.scss";
/**
* A single row for a single song in the songs table.
*/
class SettingsCSSIntl extends Component {
render() {
return (
<div>
<h2>Settings</h2>
<p>TODO</p>
</div>
);
}
}
SettingsCSSIntl.propTypes = {
intl: intlShape.isRequired,
};
export default injectIntl(CSSModules(SettingsCSSIntl, css));