mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-10-13 05:21:31 +08:00
22 lines
538 B
TypeScript
22 lines
538 B
TypeScript
import { Typography } from 'antd';
|
|
import React from 'react';
|
|
|
|
import { GetStartedContent } from './renderConfig';
|
|
import DocSection from './Section';
|
|
|
|
function InstrumentationPage(): JSX.Element {
|
|
return (
|
|
<>
|
|
<Typography>
|
|
Congrats, you have successfully installed SigNoz! Now lets get some data in
|
|
and start deriving insights from them
|
|
</Typography>
|
|
{GetStartedContent().map((section) => {
|
|
return <DocSection key={section.heading} sectionData={section} />;
|
|
})}
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default InstrumentationPage;
|