Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/packages / pages / Studio / Studio.d.ts
Size: Mime:
import React from 'react';
import { StudioPageProps } from './typings';
declare class Studio extends React.Component<StudioPageProps> {
    static defaultProps: {
        className: string;
        pageName: string;
    };
    /**
     * @note
     * this code required when we clicking on the preview mode in studio
     * since that wont call the Fallback component so hasPage call wont be triggered
     */
    componentWillMount(): Promise<void>;
    render(): JSX.Element;
}
export default Studio;
export { Studio };