import React from "react"; import { postVscMessage } from "../vscode"; function VSCodeFileLink(props: { path: string; text?: string }) { return ( { postVscMessage("openFile", { path: props.path }); }} > {props.text || props.path} ); } export default VSCodeFileLink;