Skip to content

Commit 278c63e

Browse files
committed
first commit
0 parents  commit 278c63e

File tree

13 files changed

+4417
-0
lines changed

13 files changed

+4417
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# [React](https://reactjs.org/) · [![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/facebook/react/blob/master/LICENSE) [![npm version](https://img.shields.io/npm/v/react.svg?style=flat)](https://www.npmjs.com/package/react) [![CircleCI Status](https://circleci.com/gh/facebook/react.svg?style=shield&circle-token=:circle-token)](https://circleci.com/gh/facebook/react) [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://reactjs.org/docs/how-to-contribute.html#your-first-pull-request)
2+
3+
React is a JavaScript library for building user interfaces.
4+
5+
## Total React Tutorial
6+
7+
documentation coming soon.

dist/bundle.js

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

index.html

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<html>
2+
<head>
3+
<title>Our project</title>
4+
<link rel="stylesheet" href="./public/main.css" />
5+
</head>
6+
<body>
7+
<div id="root"></div>
8+
<script src="./dist/bundle.js"></script>
9+
</body>
10+
</html>

0 commit comments

Comments
 (0)