Repository URL to install this package:
|
Version:
0.0.15 ▾
|
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 };