@talkfurther/react
Version:
README.md
22 lines (21 loc) • 605 B
TypeScript
import React from "react";
import { ITeaserProps, TeaserRegion } from "@talkfurther/elements";
declare module "react" {
namespace JSX {
interface IntrinsicElements {
"further-teaser": any;
}
}
}
interface TeaserComponentProps extends ITeaserProps {
region?: TeaserRegion;
}
interface TeaserComponentState {
isClient: boolean;
}
export declare class Teaser extends React.Component<TeaserComponentProps, TeaserComponentState> {
constructor(props: TeaserComponentProps);
componentDidMount(): void;
render(): React.JSX.Element;
}
export default Teaser;