UNPKG

@storybook/addon-notes

Version:
14 lines (13 loc) 268 B
import { Component } from 'react'; interface Props { query: string; } interface State { src: string | null; } export default class Giphy extends Component<Props, State> { state: State; componentDidMount(): void; render(): JSX.Element; } export {};