import React from 'react' import { useTestContext, withTestContext } from './TestContext' const Button = (props: any) => { const {punishmentLevel} = props.testContextProps const { heat }: any = useTestContext() return (
heat: {heat}
levels: {punishmentLevel}
) } export default withTestContext(Button)