Skip to content

Instantly share code, notes, and snippets.

View nomanoff's full-sized avatar
👋
hello

Azizbek Nomonjonov nomanoff

👋
hello
View GitHub Profile
@adrianhajdin
adrianhajdin / Home.jsx
Created December 20, 2021 19:44
Build and Deploy a Modern Full Stack Social Media App | FULL COURSE
import React, { useState, useRef, useEffect } from 'react';
import { HiMenu } from 'react-icons/hi';
import { AiFillCloseCircle } from 'react-icons/ai';
import { Link, Route, Routes } from 'react-router-dom';
import { Sidebar, UserProfile } from '../components';
import Pins from './Pins';
import { userQuery } from '../utils/data';
import { client } from '../client';
import logo from '../assets/logo.png';