Skip to content
This repository was archived by the owner on Oct 23, 2024. It is now read-only.

Commit 3f0a73b

Browse files
committed
Rename SidePanel into SidePanelContents
1 parent dc3dcd6 commit 3f0a73b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/SidePanel/SidePanelContents.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import React, {PropTypes} from 'react/addons';
55
const CSSTransitionGroup = React.addons.CSSTransitionGroup;
66
const METHODS_TO_BIND = ['handleBackdropClick', 'closeSidePanel'];
77

8-
export default class SidePanel extends React.Component {
8+
export default class SidePanelContents extends React.Component {
99
constructor() {
1010
super();
1111

@@ -132,7 +132,7 @@ export default class SidePanel extends React.Component {
132132

133133
}
134134

135-
SidePanel.defaultProps = {
135+
SidePanelContents.defaultProps = {
136136
closeByBackdropClick: true,
137137
header: null,
138138
onClose: () => {},
@@ -147,7 +147,7 @@ SidePanel.defaultProps = {
147147
sidePanelClass: 'side-panel side-panel-large flex-container-col container container-pod container-pod-short flush-top'
148148
};
149149

150-
SidePanel.propTypes = {
150+
SidePanelContents.propTypes = {
151151
children: PropTypes.node,
152152
closeByBackdropClick: PropTypes.bool,
153153
header: PropTypes.node,

0 commit comments

Comments
 (0)