import * as React from 'react' import * as ReactDOM from 'react-dom' import { Atom, F } from '@grammarly/focal' const Counter = (props: { count: Atom }) => You have clicked this button {props.count} time(s). const App = (props: { state: Atom<{ count: number }> }) =>
x.count)} />
ReactDOM.render(, document.getElementById('app'))