Pranshu Chittora 1ec9248975
feat: getting started page (#1560)
Co-authored-by: palashgdev <palashgdev@gmail.com>
2022-09-12 16:26:01 +05:30

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;