Skip to content

Instantly share code, notes, and snippets.

View NJul's full-sized avatar

Nina NJul

  • Ukraine
View GitHub Profile
@NJul
NJul / fortune-cookie.markdown
Created November 29, 2022 10:29
Fortune Cookie
@NJul
NJul / index.html
Created April 27, 2022 15:59
Magic Todo List
<div id="root"></div>
@NJul
NJul / index.html
Created July 22, 2021 08:15
Splitting: Image Hover Gallery
<div class="tiler">
<img src="https://picsum.photos/1000/600?image=1067" />
</div>
<div class="tiler">
<img src="https://picsum.photos/1000/600?image=1061" />
</div>
<div class="tiler">
<img src="https://picsum.photos/1000/600?image=1057" />
@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>