mirror of
https://github.com/estruyf/vscode-front-matter.git
synced 2026-07-04 17:01:05 +02:00
11 lines
206 B
TypeScript
11 lines
206 B
TypeScript
import * as React from 'react';
|
|
|
|
export interface ILinkProps {}
|
|
|
|
export const Link: React.FunctionComponent<ILinkProps> = (props: React.PropsWithChildren<ILinkProps>) => {
|
|
return (
|
|
<>
|
|
|
|
</>
|
|
);
|
|
}; |