UNPKG

react-amphtml

Version:

Use amphtml components inside your React apps easily!

14 lines (13 loc) 380 B
import React, { ReactElement } from 'react'; export declare const ON_ATTRIBUTE = "on"; export interface ActionOnProps { [ON_ATTRIBUTE]: string; } export interface ActionProps { children: (props: ActionOnProps) => ReactElement; events: { [eventName: string]: string[]; }; } declare const Action: React.FunctionComponent<ActionProps>; export default Action;