import { BaseStyleInspectorProps, Declaration } from "./view.pc"; import * as React from "react"; import { ComputedStyleInfo } from "paperclip"; export type Props = { computedStyleInfo: ComputedStyleInfo; }; export default (Base: React.ComponentClass) => { return class StyleInspectorController extends React.PureComponent { render() { const { computedStyleInfo } = this.props; const declarations = Object.keys(computedStyleInfo.style).map( styleName => { return ( ); } ); return ; } }; };