Render media gallery placeholder panel
This commit is contained in:
parent
f9e4613395
commit
32a3ef518b
3 changed files with 71 additions and 0 deletions
13
ts/components/conversation/media-gallery/MediaGallery.tsx
Normal file
13
ts/components/conversation/media-gallery/MediaGallery.tsx
Normal file
|
@ -0,0 +1,13 @@
|
|||
import React from 'react';
|
||||
|
||||
interface Props {
|
||||
number: number;
|
||||
}
|
||||
|
||||
export class MediaGallery extends React.Component<Props, {}> {
|
||||
public render() {
|
||||
return (
|
||||
<div>Hello Media Gallery! Number: {this.props.number}</div>
|
||||
);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue