HR/CryptoSync

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

Summary

Maintainability
A
0 mins
Test Coverage
var React = require('react');
/** @jsx React.DOM */

var FileList = React.createClass({
    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
);