import React, { useContext, createContext } from 'react';
import { useEffect, useRef, useState } from '@storybook/client-api';
const Consumer = () => {
// testing hooks in the component itself,
// rendering JSX for the component without decorators
// per https://github.com/storybookjs/storybook/pull/14652/
const value = useContext(DummyContext);
return