Skip to content

Commit

Permalink
Rename components to match file names
Browse files Browse the repository at this point in the history
  • Loading branch information
Graham42 committed Oct 7, 2017
1 parent 4efb97a commit b6f5484
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/scripts/views/collapsable_container.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import PropTypes from "prop-types";
import classNames from "classnames";
import _ from "lodash";

export default class BeatVisualization extends Component {
export default class CollapsableContainer extends Component {
static propTypes = {
children: PropTypes.node,
collapsed: PropTypes.bool.isRequired,
Expand Down
2 changes: 1 addition & 1 deletion app/scripts/views/pie_chart.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import Chartist from "Chartist";
import PropTypes from "prop-types";
import React, { PureComponent } from "react";

export default class LevelView extends PureComponent {
export default class PieChart extends PureComponent {
static propTypes = {
pieParts: PropTypes.array.isRequired
};
Expand Down
2 changes: 1 addition & 1 deletion app/scripts/views/range_setting_component.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import _ from "lodash";

const multiplier = 10;

export default class SettingsView extends Component {
export default class RangeSettingComponent extends Component {
static defaultProps = {
valueToString: _.identity,
label: ""
Expand Down
2 changes: 1 addition & 1 deletion app/scripts/views/rhythm_settings_view.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import SettingLine from "./setting_line";
import AnalyticsService from "../services/analytics_service.js";
import _ from "lodash";

export default class PitchSettingsView extends Component {
export default class RythmSettingsView extends Component {
static propTypes = {
settings: PropTypes.object
};
Expand Down

0 comments on commit b6f5484

Please sign in to comment.