lbry-desktop/src/ui/component/viewers/comicBookViewer.jsx

28 lines
434 B
React
Raw Normal View History

2019-05-09 00:47:39 +02:00
// @flow
import * as React from 'react';
type Props = {
theme: string,
source: {
stream: string => any,
fileType: string,
contentType: string,
},
};
class ComicBookViewer extends React.PureComponent<Props> {
constructor(props: Props) {
super(props);
}
componentDidMount() {}
render() {
const { source, theme } = this.props;
return <div>template</div>;
}
}
export default ComicBookViewer;