Skip to content

Commit 60524d5

Browse files
committed
[+] hello-world
1 parent 1be0691 commit 60524d5

File tree

7 files changed

+43664
-2
lines changed

7 files changed

+43664
-2
lines changed

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,16 @@ BASIC REACT JS
22
==============
33
Belajar tentang penggunaan **reactjs**, pemahaman fundamental dan struktur penulisan kodenya. Juga penggunaan dasar dengan **bootstrap**.
44

5+
---
56

67
### Teknologi yang digunakan :
7-
* [React JS](https://facebook.github.io/react/docs/getting-started.html "Getting started to reactjs")
8+
* [React](https://facebook.github.io/react/docs/getting-started.html "Getting started to react")
89
* [Bootstrap](http://getbootstrap.com/getting-started "Getting started to bootstrap")
10+
* [Babel](https://babeljs.io/ "Babel is a JavaScript compiler")
911

12+
---
1013

1114
### Sumber belajar :
12-
* [Per Harald Borgen (medium.com)](https://medium.com/learning-new-stuff/learn-react-js-in-7-min-92a1ef023003#.vgb5y8lag "Article by: Per Harald Borgen")
15+
* [Learn React.JS in 8 Minutes - Per Harald Borgen](https://medium.com/learning-new-stuff/learn-react-js-in-7-min-92a1ef023003#.vgb5y8lag "Article by: Per Harald Borgen")
16+
* [Learning React.js: Getting Started and Concepts - Ken Wheeler](https://scotch.io/tutorials/learning-react-getting-started-and-concepts "Article by: Ken Wheeler")
17+
* [React.js Tutorial Pt 1: A Comprehensive Guide to Building Apps with React.js - Tyler McGinnis](https://tylermcginnis.com/react-js-tutorial-pt-1-a-comprehensive-guide-to-building-apps-with-react-js-8ce321b125ba#.qooyed2or "Article by: Tyler McGinnis")

browser.min.js

Lines changed: 30 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/react-dom-server.js

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
/**
2+
* ReactDOMServer v15.3.2
3+
*
4+
* Copyright 2013-present, Facebook, Inc.
5+
* All rights reserved.
6+
*
7+
* This source code is licensed under the BSD-style license found in the
8+
* LICENSE file in the root directory of this source tree. An additional grant
9+
* of patent rights can be found in the PATENTS file in the same directory.
10+
*
11+
*/
12+
// Based off https://github.com/ForbesLindesay/umd/blob/master/template.js
13+
;(function(f) {
14+
// CommonJS
15+
if (typeof exports === "object" && typeof module !== "undefined") {
16+
module.exports = f(require('react'));
17+
18+
// RequireJS
19+
} else if (typeof define === "function" && define.amd) {
20+
define(['react'], f);
21+
22+
// <script>
23+
} else {
24+
var g;
25+
if (typeof window !== "undefined") {
26+
g = window;
27+
} else if (typeof global !== "undefined") {
28+
g = global;
29+
} else if (typeof self !== "undefined") {
30+
g = self;
31+
} else {
32+
// works providing we're not in "use strict";
33+
// needed for Java 8 Nashorn
34+
// see https://github.com/facebook/react/issues/3037
35+
g = this;
36+
}
37+
g.ReactDOMServer = f(g.React);
38+
}
39+
40+
})(function(React) {
41+
return React.__SECRET_DOM_SERVER_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
42+
});

build/react-dom.js

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
/**
2+
* ReactDOM v15.3.2
3+
*
4+
* Copyright 2013-present, Facebook, Inc.
5+
* All rights reserved.
6+
*
7+
* This source code is licensed under the BSD-style license found in the
8+
* LICENSE file in the root directory of this source tree. An additional grant
9+
* of patent rights can be found in the PATENTS file in the same directory.
10+
*
11+
*/
12+
// Based off https://github.com/ForbesLindesay/umd/blob/master/template.js
13+
;(function(f) {
14+
// CommonJS
15+
if (typeof exports === "object" && typeof module !== "undefined") {
16+
module.exports = f(require('react'));
17+
18+
// RequireJS
19+
} else if (typeof define === "function" && define.amd) {
20+
define(['react'], f);
21+
22+
// <script>
23+
} else {
24+
var g;
25+
if (typeof window !== "undefined") {
26+
g = window;
27+
} else if (typeof global !== "undefined") {
28+
g = global;
29+
} else if (typeof self !== "undefined") {
30+
g = self;
31+
} else {
32+
// works providing we're not in "use strict";
33+
// needed for Java 8 Nashorn
34+
// see https://github.com/facebook/react/issues/3037
35+
g = this;
36+
}
37+
g.ReactDOM = f(g.React);
38+
}
39+
40+
})(function(React) {
41+
return React.__SECRET_DOM_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
42+
});

0 commit comments

Comments
 (0)