Replymessage unavailable
There are just too many edge cases unfortunately. For formatting, it's perfect. But imagine things like this
// seems fine
<InlineQuery onChange={(text) => setInput(text)} articles={articles} />
// but what does it mean to have two? Runtime error? ugh...
<InlineQuery onChange={(text) => setInput(text)} articles={articles} />
// nice
<InlineButton callback={someFunc} />
<ReplyButton value="Test" />