UNPKG

react-amphtml

Version:

Use amphtml components inside your React apps easily!

9 lines (8 loc) 240 B
import React, { ReactNode } from 'react'; export interface HtmlProps { children: ReactNode; format?: 'amp' | 'amp4ads' | 'amp4email'; lang?: string; } declare const Html: React.FunctionComponent<HtmlProps>; export default Html;