Skip to content

Commit d473cd2

Browse files
committed
First Commit
0 parents  commit d473cd2

16 files changed

+15735
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

babel.config.js

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
module.exports = {
2+
presets: [
3+
'@babel/preset-env',
4+
'@babel/preset-typescript',
5+
['@babel/preset-react', {
6+
runtime: 'automatic',
7+
}
8+
],
9+
]
10+
};

dist/bundle.js

+206
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/bundle.js.LICENSE.txt

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
/*
2+
object-assign
3+
(c) Sindre Sorhus
4+
@license MIT
5+
*/
6+
7+
/** @license React v17.0.2
8+
* react.production.min.js
9+
*
10+
* Copyright (c) Facebook, Inc. and its affiliates.
11+
*
12+
* This source code is licensed under the MIT license found in the
13+
* LICENSE file in the root directory of this source tree.
14+
*/

dist/index.html

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!DOCTYPE html>
2+
<html lang="pt-BR">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<title>Github Explorer</title>
8+
<script defer src="bundle.js"></script></head>
9+
<body>
10+
<div id="root"></div>
11+
12+
</body>
13+
</html>

0 commit comments

Comments
 (0)