mirror of
https://github.com/grafana/grafana.git
synced 2025-02-16 18:34:52 -06:00
* Connections: Simplify connections nav * rename Connections pages everywhere --------- Co-authored-by: Miklós Tolnai <miklos.tolnai@grafana.com>
16 lines
342 B
TypeScript
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>
|
|
);
|
|
}
|