aboutsummaryrefslogtreecommitdiffstats
path: root/web/src/js/footer.react.js
blob: 96506e851e912fe25cce5c07fc3c18662607d3ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/** @jsx React.DOM */

var Footer = React.createClass({
    render : function(){
        var style = {
            textAlign: "center"
        };
        return (<footer>
            <span className="label label-success">transparent mode</span>
            </footer>);
    }
});