Skip to content
View leaderg's full-sized avatar

Block or report leaderg

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.

Content in all repositories owned by your account will be closed.
Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

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

Report abuse

Pinned Loading

  1. Linguista_App Linguista_App Public

    Forked from Danzed11/Linguista_App

    Language learning app

    CSS 1

  2. jwt-challenge jwt-challenge Public

    JavaScript

  3. Algorithm for QuickSort Algorithm for QuickSort
    1
    function quickSort(input) {
    2
        if (input.length <= 1) {return input}
    3
        let less = [];
    4
        let more = [];
    5
        for (let i = 0 ; i < input.length ; i++) {
  4. Using Children as Props in React Using Children as Props in React
    1
    import React from "react";
    2
    import ReactDOM from "react-dom";
    3
    import "./styles.css";
    4
    
                  
    5
    const UserAvatar = ({ user, size }) => (