Files
liquidjs/demo/reactjs/src/ClickButton.js
T

16 lines
301 B
JavaScript

import './ClickButton.css';
import React from 'react';
import { Context } from './Context';
export function ClickButton() {
return (
<Context.Consumer>
{context => (
<button onClick={context.count}>
Click Here!
</button>
)}
</Context.Consumer>
);
};