HR/CryptoSync

View on GitHub
src/elements/react/menubar.js

Summary

Maintainability
A
0 mins
Test Coverage
/** @jsx React.DOM */

var FileList = React.createClass({displayName: "FileList",
    fileList: function(event){
        // Add code to set FileList state accordingly (update when necessary)
    },
    getInitialState: function(){
         // Check for previous state (on the previous run of the program)
    },
    componentWillMount: function(){
        // Set data accordingly on change
    },
    render: function(){
        return (
            // File list array UI
            null
        );
    }
});

React.render(
    // render the file list UI
);