Skip to content

Instantly share code, notes, and snippets.

View pseudoeazy's full-sized avatar

Chibuzor Israel pseudoeazy

View GitHub Profile
@pseudoeazy
pseudoeazy / react-context-styles
Last active October 2, 2022 15:21
styles for react-context tutorial
/** css reset **/
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Arial, Helvetica, sans-serif;
@pseudoeazy
pseudoeazy / script.js
Created March 13, 2022 19:07
products for js to react
const products = [
{
emoji: "🍇",
name: "Grape",
price: 7,
category: "fruits",
additional: [
{
content: "A grape bunch, as cut from the vine and used to make wine",
},
@pseudoeazy
pseudoeazy / style.css
Created March 13, 2022 18:45
react to js styles
/** css reset **/
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
/*general style*/
body {