Created a project structure and build system with basic layout design.

This commit is contained in:
Mario Basic
2015-05-26 17:58:33 +02:00
parent 49447b0953
commit 5b966014c4
124 changed files with 52680 additions and 0 deletions

11
assets/js/app.js Normal file
View File

@@ -0,0 +1,11 @@
/* This is a fix for Bootstrap requiring jQuery */
global.jQuery = require('jquery');
require('bootstrap');
var React = require('react');
var WakaTime = require('./components/WakaTime.react');
React.render(
<WakaTime />,
document.getElementById('wakatime')
);