import React from 'react'; interface Props {} interface State { // FIXME Use Emoji-Mart categories category: null; } export class SessionEmojiPanel extends React.Component { constructor(props: any) { super(props); this.state = { category: null, }; } render() { return
THIS IS EMOJI STUFF
; } }