UNPKG

xsmiles

Version:

XSMILES is a JavaScript tool to visualize atom and non-atom attributions and SMILES strings through interactive coordinated visualizations.

18 lines 483 B
import React from "react"; interface InputSmilesVisProps { } interface InputSmilesVisState { smilesString: string; } declare class InputSmilesVis extends React.Component<InputSmilesVisProps, InputSmilesVisState> { constructor(props: InputSmilesVisProps); handleChange: (e: { target: { name: any; value: any; }; }) => void; render(): JSX.Element; } export default InputSmilesVis; //# sourceMappingURL=InputSmilesVis.d.ts.map