diff options
author | Christian Pointner <equinox@helsinki.at> | 2016-09-28 19:26:51 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2016-09-28 19:26:51 (GMT) |
commit | ea3ef4df505273827bf2c1e4eef5e9716e9746b0 (patch) | |
tree | afd65e511c94d6b1df9602cdc4cf34d69c6f49f5 /www/js/bundle.js | |
parent | 8ca2b1d7e9c6f142c2d89f33b41a164a0eadf702 (diff) |
restructering components
Diffstat (limited to 'www/js/bundle.js')
-rw-r--r-- | www/js/bundle.js | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/www/js/bundle.js b/www/js/bundle.js deleted file mode 100644 index 72bc450..0000000 --- a/www/js/bundle.js +++ /dev/null @@ -1,21 +0,0 @@ -(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){ -var ClockView = React.createClass({ - displayName: "ClockView", - - render: function () { - return React.createElement( - "p", - null, - "Hello, ", - React.createElement("input", { type: "text", placeholder: "Your name here" }), - "! It is ", - this.props.date.toTimeString() - ); - } -}); - -setInterval(function () { - ReactDOM.render(React.createElement(ClockView, { date: new Date() }), document.getElementById('clock')); -}, 500); - -},{}]},{},[1]); |