session-desktop/ts/components/session/conversation/SessionEmojiPanel.tsx

23 lines
389 B
TypeScript
Raw Normal View History

2020-02-19 02:05:48 +01:00
import React from 'react';
interface Props {}
interface State {
// FIXME Use Emoji-Mart categories
2020-02-27 00:01:18 +01:00
category: null;
2020-02-19 02:05:48 +01:00
}
export class SessionEmojiPanel extends React.Component<Props, State> {
constructor(props: any) {
super(props);
this.state = {
category: null,
};
}
render() {
2020-02-27 00:01:18 +01:00
return <div className="session-emoji-panel">THIS IS EMOJI STUFF</div>;
2020-02-19 02:05:48 +01:00
}
}