import { Typography } from 'antd'; import React from 'react'; import { GetStartedContent } from './renderConfig'; import DocSection from './Section'; function InstrumentationPage(): JSX.Element { return ( <> Congrats, you have successfully installed SigNoz! Now lets get some data in and start deriving insights from them {GetStartedContent().map((section) => { return ; })} ); } export default InstrumentationPage;