You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
session-desktop/ts/components/session/conversation/SessionEmojiPanel.tsx

23 lines
389 B
TypeScript

import React from 'react';
interface Props {}
interface State {
// FIXME Use Emoji-Mart categories
5 years ago
category: null;
}
export class SessionEmojiPanel extends React.Component<Props, State> {
constructor(props: any) {
super(props);
this.state = {
category: null,
};
}
render() {
5 years ago
return <div className="session-emoji-panel">THIS IS EMOJI STUFF</div>;
}
}