Skip to content

Commit b85aee8

Browse files
committed
Merge pull request shakacode#214 from JamesWatling/hotfix/layout-base-component
Update Layout to extend BaseComponent.
2 parents a0f939c + 6bb5302 commit b85aee8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

client/app/bundles/comments/layout/Layout.jsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
import React, { PropTypes } from 'react';
22
import { IndexLink, Link } from 'react-router';
3+
import BaseComponent from 'libs/components/BaseComponent';
34

45
import './Layout.scss';
56

6-
export default class Layout extends React.Component {
7+
export default class Layout extends BaseComponent {
78

89
static propTypes = {
910
children: PropTypes.object.isRequired,

0 commit comments

Comments
 (0)