Repository URL to install this package:
|
Version:
0.0.15 ▾
|
import * as React from 'react';
/**
* @todo - could render subroutes in here
* @todo - shouldn't connect to studio here?
* @todo - this is rendering studio WAY TOO MANY TIMES
*/
declare class Fallback extends React.Component<{
className?: string;
}> {
static defaultProps: {
className: string;
list: readonly any[];
};
componentWillMount(): Promise<void>;
render(): JSX.Element;
}
export { Fallback };
export default Fallback;