Skip to content

Instantly share code, notes, and snippets.

View cristianPerez's full-sized avatar
🏠
Working from home

cristian camilo perez cardona cristianPerez

🏠
Working from home
  • https://github.com/organizations/GoingTube
View GitHub Profile
@cristianPerez
cristianPerez / index.html
Last active January 30, 2018 16:32
React basics: is a gist for learn the basics of REACT and how implement properties, also manage state between components.
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Hello world react</title>
<script src="https://unpkg.com/react@16/umd/react.development.js"></script>
<script src="https://unpkg.com/react-dom@16/umd/react-dom.development.js"></script>
<script src="https://unpkg.com/babel-standalone@6.15.0/babel.min.js"></script>
</head>