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/SessionConversation.tsx

21 lines
386 B
TypeScript

import React from 'react';
interface Props{};
interface State{};
export class SessionConversation extends React.Component<Props, State> {
public constructor(props: Props) {
super(props);
this.state = {};
}
render() {
return (
<div className="inbox-view">
THIS IS AN INBOX VIEW
</div>
)
}
}