Skip to content

Instantly share code, notes, and snippets.

View Ryanjso's full-sized avatar

Ryan Soderberg Ryanjso

  • brooklyn
View GitHub Profile
@Ryanjso
Ryanjso / dropdown.tsx
Created December 8, 2024 22:09
dropdown example auto height
import { useRouter } from 'next/router';
import React, { useRef, useState } from 'react';
import BlackChevron from '@/public/images/chevron.svg';
import WhiteChevron from '@/public/images/white_chevron.svg';
const DropDown = (props: {
question: string;
answer: string;
isToggled: boolean;