UNPKG

@hhgtech/hhg-components

Version:
8 lines (7 loc) 251 B
import React, { HTMLAttributes } from 'react'; import { TabData } from "../types"; export type Props = { info: TabData; } & HTMLAttributes<HTMLDivElement>; declare const About: ({ className }: Props) => React.JSX.Element; export { About };