Skip to content

Instantly share code, notes, and snippets.

View Jacobkyalo's full-sized avatar
:octocat:
Focusing

Jacob Kyalo Jacobkyalo

:octocat:
Focusing
View GitHub Profile
@Jacobkyalo
Jacobkyalo / App.js
Created July 29, 2022 05:24
jsonplaceholder api
import React from "react";
import PostDetails from "./components/PostDetails";
import Posts from "./components/Posts";
import { BrowserRouter as Router, Routes, Route } from "react-router-dom";
const App = () => {
return (
<div className="app">
<Router>
<Routes>
@Jacobkyalo
Jacobkyalo / modern_js.md
Created June 11, 2022 21:56 — forked from gaearon/modern_js.md
Modern JavaScript in React Documentation

If you haven’t worked with JavaScript in the last few years, these three points should give you enough knowledge to feel comfortable reading the React documentation:

  • We define variables with let and const statements. For the purposes of the React documentation, you can consider them equivalent to var.
  • We use the class keyword to define JavaScript classes. There are two things worth remembering about them. Firstly, unlike with objects, you don't need to put commas between class method definitions. Secondly, unlike many other languages with classes, in JavaScript the value of this in a method [depends on how it is called](https://developer.mozilla.org/en-US/docs/Web/Jav