import React from 'react'; import { BrowserRouter } from 'react-router-dom'; import { DashboardExtension } from '@openmrs/esm-styleguide'; import { type DashboardLinkConfig } from '../types'; export function createDashboardLink(db: DashboardLinkConfig) { return function ({ basePath }: { basePath: string }) { return ( ); }; }