0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-12 06:42:40 +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;