Skip to content

Instantly share code, notes, and snippets.

View imgiseverything's full-sized avatar

Phil Thompson imgiseverything

View GitHub Profile
@imgiseverything
imgiseverything / parent-state-reset
Last active June 23, 2021 13:22
Parent state is reset when child function runs
/* .tsx */
import React, { useState, useCallback } from 'react';
// Tab list options, nothing fancy
const options = [
{ label: 'Option 1', value: '1'},
{ label: 'Option 2', value: '2'},
{ label: 'Option 3', value: '3'},
]