Skip to content

Instantly share code, notes, and snippets.

View rlindskog's full-sized avatar

Ryan Lindskog rlindskog

View GitHub Profile
import React, { useRef, ChangeEvent, useCallback } from 'react';
import classNames from 'classnames';
export enum Plans {
free = 'free',
standard = 'standard',
pro = 'pro',
}
interface PlanInputRadioProps {