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.
23 lines
389 B
TypeScript
23 lines
389 B
TypeScript
5 years ago
|
import React from 'react';
|
||
|
|
||
|
interface Props {}
|
||
|
|
||
|
interface State {
|
||
|
// FIXME Use Emoji-Mart categories
|
||
5 years ago
|
category: null;
|
||
5 years ago
|
}
|
||
|
|
||
|
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>;
|
||
5 years ago
|
}
|
||
|
}
|