mirror of
https://github.com/grafana/grafana.git
synced 2025-08-01 20:22:19 +08:00

rename "Your data source" to "Data source" page This page was meant to be named "Data source" in the previous PR [0]. I just made a mistake by naming it wrongly. [0]: https://github.com/grafana/grafana/pull/66813/files
18 lines
463 B
TypeScript
18 lines
463 B
TypeScript
import * as React from 'react';
|
|
|
|
import { Page } from 'app/core/components/Page/Page';
|
|
import { NewDataSource } from 'app/features/datasources/components/NewDataSource';
|
|
|
|
export function NewDataSourcePage() {
|
|
return (
|
|
<Page
|
|
navId={'connections-datasources'}
|
|
pageNav={{ text: 'Add data source', subTitle: 'Choose a data source type', active: true }}
|
|
>
|
|
<Page.Contents>
|
|
<NewDataSource />
|
|
</Page.Contents>
|
|
</Page>
|
|
);
|
|
}
|