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