@metacell/geppetto-meta-ui
Version:
React components from geppetto-meta to create neuroscience applications and visualize data.
22 lines (21 loc) • 595 B
TypeScript
export default HTMLViewer;
declare class HTMLViewer extends React.Component<any, any, any> {
constructor(props: any);
state: {
content: any;
};
handleClick(e: any): void;
htmlViewer: React.RefObject<any>;
setContent(content: any): void;
UNSAFE_componentWillReceiveProps(nextProps: any): void;
componentDidMount(): void;
render(): import("react/jsx-runtime").JSX.Element;
}
declare namespace HTMLViewer {
namespace propTypes {
const content: any;
const style: any;
const handleClick: any;
}
}
import React from "react";