'use strict';

var msoActionCreators = require("../actions/mso-consoleActionCreators");
var msoStore          = require("../stores/mso-consoleStore");

var AppFooter = React.createClass({


    componentWillMount: function() {

    },

    componentDidMount: function() {

    },

    componentWillUnmount: function() {

    },

    render: function() {
        return (
            <h1>Footer</h1>
        );
    },
});

module.exports = AppFooter;
