Skip to content

Instantly share code, notes, and snippets.

View NJul's full-sized avatar

Nina NJul

  • Ukraine
View GitHub Profile
@NJul
NJul / customHook.js
Created July 8, 2020 17:10 — forked from Esthetech/customHook.js
React Hooks
// Rebuilding the `useState()` React Hook
// this is what react hooks kinda looks like
import React from "react"
import ReactDOM from "react-dom"
// The values from the useState hook needs to be stored somewhere
// Thats where this states
const states = []
let calls = -1
@NJul
NJul / index.html
Created April 23, 2020 01:46 — forked from gaearon/index.html
Add React in One Minute
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Add React in One Minute</title>
</head>
<body>
<h2>Add React in One Minute</h2>
<p>This page demonstrates using React with no build tooling.</p>