Skip to content
View djD-REK's full-sized avatar
🌞
Full-Stack JavaScript Developer & Doctor of Physical Therapy 🌞
🌞
Full-Stack JavaScript Developer & Doctor of Physical Therapy 🌞
Block or Report

Block or report djD-REK

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. stringify-example.js stringify-example.js
    1
    const myObject = {
    2
      dog: "πŸ•",
    3
      cat: "🐈",
    4
      koala: "🐨",
    5
      count: 3
  2. lifting-state-up-example.js lifting-state-up-example.js
    1
    // Lifting State Up (React.js Example) by Dr. Derek Austin πŸ₯³
    2
    
                  
    3
    // Adapted from code by Kent C. Dodds and the React docs
    4
    // https://kentcdodds.com/blog/application-state-management-with-react
    5
    // https://reactjs.org/docs/lifting-state-up.html
  3. medium-articles medium-articles Public

    Read all my JavaScript articles free online using these Medium Friend Links

    JavaScript 4 1

  4. Use React Hooks to Create a Toggle S... Use React Hooks to Create a Toggle Switch or Counter
    1
    import React, { useState } from "react";
    2
    import ReactDOM from "react-dom";
    3
    
                  
    4
    import "./styles.css";
    5
    
                  
  5. 3-card-tarot-reading.js 3-card-tarot-reading.js
    1
    // Animate 3 Card Tarot Reading by Dr. Derek Austin πŸ₯³
    2
    // Credit Paul Henckel for the original code
    3
    // Source: https://codesandbox.io/s/j0y0vpz59?from-embed
    4
    
                  
    5
    import { render } from 'react-dom'
  6. Create Dark Mode for React with use-... Create Dark Mode for React with use-dark-mode
    1
    import React, { useState } from "react";
    2
    import ReactDOM from "react-dom";
    3
    import useDarkMode from "use-dark-mode"; // Don't forget to import the NPM package use-dark-mode
    4
    
                  
    5
    import "./styles.scss";