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.
30 lines
421 B
TypeScript
30 lines
421 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>
|
|
);
|
|
}
|
|
}
|