1
0
mirror of https://github.com/stolksdorf/homebrewery.git synced 2025-12-23 20:11:32 +00:00
Files
homebrewery/client/splatsheet/codeEditor/codeEditor.jsx
2016-04-06 00:45:56 -04:00

15 lines
259 B
JavaScript

var React = require('react');
var _ = require('lodash');
var cx = require('classnames');
var SheetEditor = React.createClass({
render : function(){
return <div className='sheetEditor'>
SheetEditor Ready!
</div>
}
});
module.exports = SheetEditor;