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).
); }; export default Index;