import React from 'react'; import { OrisonPage } from 'orisonjs'; const Index: OrisonPage = () => { const [counter, setCounter] = React.useState(0); return ( <> You have pressed the button {counter} time(s). setCounter(counter + 1)}>Click Me > ); }; export default Index;