Reply -> Quote
This commit is contained in:
parent
2def6afe45
commit
b4ce79cac0
4 changed files with 7 additions and 5 deletions
14
ts/components/conversation/Quote.tsx
Normal file
14
ts/components/conversation/Quote.tsx
Normal file
|
@ -0,0 +1,14 @@
|
|||
import React from 'react';
|
||||
|
||||
|
||||
interface Props { name: string; }
|
||||
|
||||
interface State { count: number; }
|
||||
|
||||
export class Reply extends React.Component<Props, State> {
|
||||
public render() {
|
||||
return (
|
||||
<div>Placeholder</div>
|
||||
);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue