16 lines
348 B
Plaintext
16 lines
348 B
Plaintext
import { h } from 'preact';
|
|
import { BaseComponent } from './base';
|
|
interface FooterContainerState {
|
|
isActive: boolean;
|
|
}
|
|
export declare class FooterContainer extends BaseComponent<
|
|
{},
|
|
FooterContainerState
|
|
> {
|
|
private footerRef;
|
|
constructor(props: any, context: any);
|
|
componentDidMount(): void;
|
|
render(): h.JSX.Element;
|
|
}
|
|
export {};
|