Skip to content

Instantly share code, notes, and snippets.

View dndhm's full-sized avatar

Dan Needham dndhm

  • Dan Needham
  • London
View GitHub Profile
@dndhm
dndhm / AppWithContext.js
Last active March 30, 2023 09:17
React Context.Consumer mocking
import React, { Component } from 'react';
import FruitContext from './FruitContext';
import FruityComponent from './FruityComponent';
export class App extends Component {
state = {
fruit: 'apple',
}