Documentation Index
Fetch the complete documentation index at: https://docs.velt.dev/llms.txt
Use this file to discover all available pages before exploring further.
React / Next.js
Other Frameworks
Import the VeltViewAnalytics component from @veltdev/react
Import the VeltViewAnalytics componentimport { VeltViewAnalytics } from '@veltdev/react';
Place the VeltViewAnalytics component
Place the VeltViewAnalytics component wherever you want the View Analytics component to appear.<div className="toolbar">
<VeltViewAnalytics />
</div>
Place the velt-view-analytics component
Place the <velt-view-analytics> component wherever you want the View Analytics component to appear.<div className="toolbar">
<velt-view-analytics></velt-view-analytics>
</div>
import { VeltViewAnalytics } from '@veltdev/react';
function YourComponent() {
return (
<div className="toolbar">
<VeltViewAnalytics />
</div>
)
}