Skip to content

Instantly share code, notes, and snippets.

View OmkarK45's full-sized avatar
๐Ÿ’€
:trollface:

Omkar Kulkarni OmkarK45

๐Ÿ’€
:trollface:
View GitHub Profile
import { Tab } from '@headlessui/react'
import clsx from 'clsx'
import React from 'react'
import { IconType } from 'react-icons/lib'
// Gist this
interface Navigation {
name: string
icon: IconType | React.ElementType
component: React.ReactNode
@OmkarK45
OmkarK45 / Feed.tsx
Created September 7, 2021 18:32
Infinite scrolling component
import { gql, useQuery } from '@apollo/client'
import InfiniteScroll from 'react-infinite-scroll-component'
import { FeedQuery, FeedQueryVariables } from './__generated__/index.generated'
const FEED_QUERY = gql`
query FeedQuery($first: Int, $after: ID) {
feed(first: $first, after: $after) {
edges {
cursor
@OmkarK45
OmkarK45 / Component.tsx
Created August 14, 2021 14:53
Chakra UI
<Container maxW={'3xl'}>
<Stack
as={Box}
textAlign={'center'}
spacing={{ base: 8, md: 14 }}
py={{ base: 20, md: 36 }}>
<Heading
fontWeight={600}
fontSize={{ base: '2xl', sm: '4xl', md: '6xl' }}
lineHeight={'110%'}>
@OmkarK45
OmkarK45 / index.jsx
Created May 16, 2021 18:43
Fixed issue
export default function Home() {
return (
<div>
<div className="relative items-center justify-center">
<h1 className="p-4 text-2xl font-bold text-center text-gray-400 bg-gray-800">
Choose Your Next Adventure
</h1>
All
<div className="container items-center mx-auto my-auto lg:flex">
<div className="mx-8 my-12 bg-white rounded-lg shadow-md lg:m-4 hover:shadow-lg hover:bg-gray-100">
@OmkarK45
OmkarK45 / App.js
Created April 11, 2021 15:54
This will show fancy progress bar on top of your apps :D
/*Here's how to use it*/
import FancyRoute from "./components/Route/Route"
export default function App(){
return (
<Router>
<FancyRoute path="/" component={Home}/>
</Router>
)