grafana/public/app/features/connections/pages/AddNewConnectionPage.tsx
Torkel Ödegaard 9614dc2446
Connections: Simplify connections nav (#66813)
* Connections: Simplify connections nav

* rename Connections pages everywhere

---------

Co-authored-by: Miklós Tolnai <miklos.tolnai@grafana.com>
2023-05-02 10:51:59 +02:00

16 lines
342 B
TypeScript

import * as React from 'react';
import { Page } from 'app/core/components/Page/Page';
import { AddNewConnection } from '../tabs/ConnectData';
export function AddNewConnectionPage() {
return (
<Page navId={'connections-add-new-connection'}>
<Page.Contents>
<AddNewConnection />
</Page.Contents>
</Page>
);
}