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
27 lines
586 B
JavaScript
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));
|