UNPKG

@cocalc/static

Version:

CoCalc's static frontend Webpack-based build system and framework

9 lines (8 loc) 226 B
import { ReactNode, CSSProperties } from "react"; interface Props { href: string; children?: ReactNode; style?: CSSProperties; } export default function A({ href, children, style }: Props): JSX.Element; export {};