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

14 lines
246 B
TypeScript

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