Skip to content

Instantly share code, notes, and snippets.

View arturproj's full-sized avatar

Artur Shodaton arturproj

View GitHub Profile
@arturproj
arturproj / classComponent.tsx
Last active June 4, 2022 08:21
React - Reducer Class componet without Redux
import React from "react";
type MainProps = {};
type MainState = {
caughtFish: number;
fishingFor: string;
};
type ACTIONTYPE =
| { type: "increment"; payload?: number }
| { type: "decrement"; payload?: string }
@arturproj
arturproj / babel.config.json
Last active April 26, 2021 00:03
WebPack 5 basic config -- ReactJs
{
"presets": ["@babel/preset-env", "@babel/preset-react"]
}
@arturproj
arturproj / meta-tags.md
Created July 20, 2019 12:21 — forked from kevinSuttle/meta-tags.md
List of Usable HTML Meta and Link Tags

Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/

Basic HTML Meta Tags

<meta charset="UTF-8">
<meta name="keywords" content="your, tags">
<meta name="description" content="150 words">
<meta name="subject" content="your website"s subject">
<meta name="copyright" content="company name">